-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.14 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.14 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "deploy-bot",
"description": "A simple api for an **agent less** DevOps infrastructure provisionning bot.",
"subdomain": "deploy",
"scripts": {
"test": ""
},
"author": "Jonathan Sanchez <me@jsan.me>",
"repository": {
"type": "git",
"url": "git@github.com:j-san/node-deploy-bot.git"
},
"version": "0.0.6",
"engines": {
"node": "0.10.x"
},
"keywords": [
"deploy",
"bot",
"devops",
"infrastructure",
"provisionning",
"automated"
],
"main": "lib/index",
"bin": "./bin/cli.js",
"dependencies": {
"commander": "latest",
"winston": "latest",
"colors": "latest",
"q": "latest",
"ssh2": "latest",
"underscore": "^1.6.0"
},
"devDependencies": {
"jshint": "latest",
"should": "latest",
"sinon": "latest"
},
"jshintConfig": {
"curly": true,
"eqnull": true,
"eqeqeq": true,
"undef": true,
"unused": true,
"node": true,
"devel": true,
"maxcomplexity": 5,
"globals": {
"describe": false,
"it": false,
"before": false,
"beforeEach": false,
"after": false,
"afterEach": false
}
}
}