-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
39
40
41
42
43
44
45
46
{
"name": "tiny-robot",
"version": "0.0.2",
"description": "Install: `npm install`",
"main": "game/game.js",
"directories": {
"test": "tests"
},
"scripts": {
"start": "tsc && node dist/game/game.js",
"lint": "eslint ./src/**/*",
"test": "tsc && mocha 'dist/tests/**/*.js'",
"mocha": "mocha -h"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Umenokin/tiny-robot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Umenokin/tiny-robot/issues"
},
"homepage": "https://github.com/Umenokin/tiny-robot#readme",
"dependencies": {
"chai": "^4.3.4"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"eslint": "^7.28.0",
"eslint-config-favoritemedium-typescript": "^2.10.0",
"eslint-plugin-import": "^2.23.4",
"mocha": "^9.0.0",
"typescript": "^4.3.3",
"husky": "^4.2.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test",
"pre-push": "npm run lint && npm run test"
}
}
}