-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.25 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
47
48
{
"name": "kriegspiel",
"version": "1.0.0",
"description": "Command line implementation of the kriegspiel chess variant",
"main": "src/index.ts",
"scripts": {
"start": "tsc && node dist/index.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AkshayGuptaK/kriegspiel.git"
},
"keywords": [
"chess",
"kriegspiel",
"typescript"
],
"author": "AkshayGuptaK",
"license": "ISC",
"bugs": {
"url": "https://github.com/AkshayGuptaK/kriegspiel/issues"
},
"homepage": "https://github.com/AkshayGuptaK/kriegspiel#readme",
"devDependencies": {
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.1",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@types/prompts": "^2.0.9",
"auto-bind": "^4.0.0",
"p2p": "^0.10.2",
"prompts": "^2.4.0"
}
}