-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.23 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "snake-bites-two",
"version": "1.0.0",
"author": "Marian Meres <marian@meres.sk>",
"description": "Snake game",
"keywords": ["javascript", "typescript"],
"type": "module",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/*",
"build": "npm run clean && tsc",
"dev": "npm run clean && tsc -w",
"prettier": "prettier --write \"{src,tests,examples}/**/*.{js,ts,json}\"",
"test": "NODE_OPTIONS=\"--loader ts-node/esm\" ts-node tests/",
"test:watch": "NODE_OPTIONS=\"--loader ts-node/esm\" nodemon -q --watch \"src/*.*\" --watch \"src/**/*.*\" --watch \"tests/*.*\" --watch \"tests/**/*.*\" --exec \"ts-node tests/ \""
},
"repository": {
"type": "git",
"url": "git+https://github.com/marianmeres/snake-bites-two.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/marianmeres/snake-bites-two/issues"
},
"homepage": "https://github.com/marianmeres/snake-bites-two#readme",
"devDependencies": {
"@types/node": "^17.0.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"test-runner": "github:marianmeres/test-runner#2.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"bootstrap": "^5.1.3",
"lodash-es": "^4.17.21"
}
}