-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.18 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
49
{
"name": "battle",
"version": "1.0.0",
"description": "An HTML5/JS turn-based strategy game kinda",
"keywords": [
"game development",
"gamedev",
"video game",
"videogame",
"game",
"turn-based",
"turn based",
"strategy",
"tactics",
"roguelike",
"rpg",
"fantasy"
],
"license": "AGPL-3.0+",
"author": "@invicticide",
"homepage": "https://gitlab.com/invicticide/battle#README",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/invicticide/battle.git"
},
"bugs": {
"url": "https://gitlab.com/invicticide/battle/issues"
},
"private": true,
"main": "main.js",
"devDependencies": {
"@types/node": "^8.10.40",
"typescript": "^2.9.2"
},
"dependencies": {
"cli-color": "^1.4.0",
"json-schema-to-typescript": "^5.7.0",
"rimraf": "^2.6.3",
"source-map-support": "^0.5.10"
},
"scripts": {
"build": "node build/build.js",
"build-verbose": "node build/build.js --verbose",
"build-dry": "node build/build.js --dry-run",
"build-debug": "node build/build.js --debug --verbose",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
}
}