-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 758 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 758 Bytes
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
{
"name": "shape-wars",
"version": "1.0.0",
"description": "Shape Wars vectorial retro videogame",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run serve",
"build": "browserify -d src/main.ts -p [ tsify ] | exorcist web/bundle.js.map > web/bundle.js",
"watch": "chokidar 'src/**/*.ts' -c 'npm run build && echo ----- Build done -----'",
"serve": "http-server web -c-1"
},
"author": "Luis Crespo",
"license": "ISC",
"devDependencies": {
"@types/jquery": "^2.0.34",
"browserify": "^13.1.1",
"chokidar-cli": "^1.2.0",
"exorcist": "^0.4.0",
"http-server": "^0.9.0",
"tsify": "^2.0.3",
"tslint": "^4.0.2",
"typescript": "^2.0.10"
}
}