forked from Dahlgren/node-arma-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 917 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
41
42
43
{
"name": "arma-server",
"version": "0.0.7",
"description": "Launch arma server or headless client",
"homepage": "https://github.com/Dahlgren/node-arma-server",
"keywords": [
"arma"
],
"main": "src/index.js",
"scripts": {
"lint": "standard --verbose",
"test": "./node_modules/.bin/mocha"
},
"bin": {
"arma-headless": "./bin/arma-headless",
"arma-server": "./bin/arma-server"
},
"author": {
"name": "Björn Dahlgren",
"email": "[email protected]",
"url": "http://dahlgren.at/"
},
"license": "MIT",
"dependencies": {
"commander": "^2.9.0",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"mocha": "^3.4.2",
"should": "^11.2.1",
"standard": "^12.0.1"
},
"repository": {
"type": "git",
"url": "http://github.com/Dahlgren/node-arma-server.git"
},
"standard": {
"env": [
"mocha"
]
}
}