-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.5 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
66
67
{
"name": "git-wf",
"version": "1.3.4",
"description": "Git Workflow Subcommands",
"license": "BSD-3-Clause",
"main": "lib/git-workflow.js",
"bin": {
"git-wf": "cli.js"
},
"homepage": "https://github.com/groupon/git-workflow",
"repository": {
"type": "git",
"url": "https://github.com/groupon/git-workflow"
},
"bugs": {
"url": "https://github.com/groupon/git-workflow/issues"
},
"scripts": {
"pretest": "eslint lib test && tsc && ./cli.js --help | sed 's/Usage: cli/Usage: git wf/' > git-wf.1",
"test": "mocha",
"posttest": "nlm verify"
},
"man": "git-wf.1",
"nlm": {
"license": {
"files": [
"lib"
]
}
},
"dependencies": {
"commander": "^2.11.0",
"debug": "^3.0.1",
"open": "^6.3.0",
"simple-git": "^1.132.0"
},
"devDependencies": {
"@types/debug": "^4.1.4",
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.12",
"assertive": "^3.1.0",
"eslint": "^5.1.0",
"eslint-config-groupon": "^7.2.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-mocha": "^5.1.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^2.6.2",
"mktemp": "^0.4.0",
"mocha": "^6.2.3",
"nlm": "^3.6.1",
"prettier": "^1.6.1",
"rimraf": "^2.6.2",
"typescript": "^3.5.3"
},
"author": {
"name": "Groupon",
"email": "[email protected]"
},
"files": [
"*.js",
"*.1",
"lib"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}