-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.07 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
{
"name": "node-git-deployor",
"version": "1.0.2",
"description": "A git pusher helper in node",
"main": "index.js",
"bin": {
"ngd": "./bin/node-git-deployor.js"
},
"scripts": {
"prepublish": "npm test",
"test": "npm run lint --silent",
"lint": "eslint index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/douglasduteil/node-git-deployor.git"
},
"keywords": [
"node",
"git",
"deployor",
"deploy",
"tag",
"commit",
"push",
"orphan",
"travis-ci",
"github",
"release",
"publish"
],
"author": "Douglas Duteil",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/douglasduteil/node-git-deployor/issues"
},
"homepage": "https://github.com/douglasduteil/node-git-deployor",
"dependencies": {
"lodash.assign": "^3.2.0",
"lodash.defaults": "^3.1.2",
"shelljs": "^0.5.3",
"snake-case": "^1.1.1",
"yargs": "^3.26.0"
},
"devDependencies": {
"eslint": "^1.5.1",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-standard": "^1.3.1"
}
}