-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1006 Bytes
/
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
{
"name": "spacedog",
"version": "0.0.0",
"description": "Squad-based space dogfighter game",
"main": "Resources/Scripts/main.ts",
"dependencies": {
"gl-matrix": "^2.3.2"
},
"devDependencies": {
"browserify": "^13.3.0",
"tslint": "^4.2.0",
"typescript": "^2.1.4"
},
"scripts": {
"build": "npm run vendorize && tsc",
"lint": "tslint -t codeFrame src/**/*.ts",
"test": "tslint -t stylish src/**/*.ts",
"vendorize": "./bin/vendorize.js && browserify -e vendorize.js -o Modules/vendor.js",
"watch": "npm run build -- -w"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/acleverpun/spacedog.git"
},
"keywords": [
"squad",
"space",
"dogfighter",
"game",
"3d",
"atomic",
"strategy"
],
"author": "Ross Hadden <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/acleverpun/spacedog/issues"
},
"homepage": "https://github.com/acleverpun/spacedog#readme"
}