-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.28 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.28 KB
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
{
"name": "darworms",
"version": "1.0.1",
"description": "Darworms is a territory capture strategy game for one to four players. An implementation of the 1983 Electronic Arts Game Worms? as a single page javascript application. Version 0.9.0 This version has four player mode on one static web page. No server component, therefore no user id, no login, no authentication and no remote storage.",
"main": "index.js",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"dev": "npm-run-all --parallel start watch",
"start": "serve public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmaynard/Darworms.git"
},
"author": "David S. Maynard",
"license": "MIT",
"bugs": {
"url": "https://github.com/dmaynard/Darworms/issues"
},
"homepage": "https://github.com/dmaynard/Darworms#readme",
"devDependencies": {
"npm-run-all": "^4.1.5",
"rollup": "^0.60.1",
"rollup-plugin-commonjs": "^9.2.2",
"rollup-plugin-gzip": "^2.3.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^4.0.0",
"rollup-plugin-uglify-es": "0.0.1",
"serve": "^11.3.0",
"serve-handler": "^6.1.2",
"standard": "^12.0.1"
},
"dependencies": {
"autotrack": "^2.4.1"
}
}