-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.29 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "cloud-runner",
"version": "0.0.0",
"description": "",
"homepage": "https://www.github.com/ceineke/cloud-runner",
"author": {
"name": "Chris Eineke",
"email": "[email protected]",
"url": "https://ei.ne.ke/"
},
"files": [
"lib"
],
"main": "./lib/index.js",
"keywords": [
""
],
"bin": {
"cloud-runner": "./bin/cloud-runner.js"
},
"devDependencies": {
"coveralls": "^2.12.0",
"nsp": "^2.6.3",
"eslint": "^3.18.0",
"eslint-config-xo-space": "^0.16.0",
"jest": "^19.0.2",
"jest-cli": "^19.0.1"
},
"scripts": {
"prepublish": "nsp check",
"pretest": "eslint **/*.js",
"test": "jest"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"jest": true,
"node": true
},
"rules": {
"indent": [
"warn",
4
]
}
},
"repository": "[email protected]:ceineke/cloud-runner.git",
"jest": {
"testEnvironment": "node"
},
"license": "GPL-3.0",
"dependencies": {
"command-line-args": "^4.0.2",
"command-line-commands": "^2.0.0",
"debug": "^2.6.6",
"do-wrapper": "^3.11.1",
"es6-error": "^4.0.2",
"lodash": "^4.17.4",
"log4js": "^1.1.1",
"minimist": "^1.2.0",
"node-ssh": "^4.1.0",
"vultr": "0.0.6",
"when": "^3.7.8"
}
}