-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
53 lines (53 loc) · 1.19 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
50
51
52
53
{
"name": "coldwar",
"description": "Simulation Platform",
"version": "1.0.0",
"homepage": "https://coldwar.io",
"author": {
"name": "Simon Swain",
"email": "simon@simonswain.com",
"url": "https://simonswain.com"
},
"contributors": [
{
"name": "Sebastiaan Deckers",
"email": "seb@ninja.sg",
"url": "https://ninja.sg"
}
],
"repository": {
"type": "git",
"url": "https://github.com/simonswain/coldwar"
},
"main": "server/index.js",
"engines": {
"node": ">= 4.2.0"
},
"scripts": {
"test": "standard",
"start": "node server",
"postinstall": "rsync --ignore-existing config/index.sample.js config/index.js"
},
"dependencies": {
"babel-polyfill": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"babel-register": "^6.2.0",
"handlebars": "^4.0.5",
"hapi": "^11.1.2",
"hapi-less": "^0.2.0",
"inert": "^3.2.0",
"lodash": "^3.10.1",
"uglify-js": "^2.4.19",
"vision": "^4.0.1",
"winston": "^2.1.1"
},
"devDependencies": {
"babel-eslint": "^4.1.6",
"standard": "^5.4.1"
},
"license": "MIT",
"standard": {
"parser": "babel-eslint"
}
}