-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.17 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
{
"name": "release-clerk",
"version": "0.2.0",
"description": "Posts release comments to github",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha --recursive tests",
"prepush": "npm run lint && npm test"
},
"bin": "./bin/release-clerk",
"keywords": [
"release notes",
"github",
"issue",
"continuous integration",
"continuous deployment",
"microservice",
"automated"
],
"author": "GuideSmiths Ltd",
"license": "ISC",
"dependencies": {
"async": "^2.0.0-rc.5",
"commander": "^2.9.0",
"debug": "^2.2.0",
"eslint": "^0.24.1",
"github": "^0.2.4",
"hogan.js": "^3.0.2",
"lodash": "^4.13.1",
"require-all": "^2.0.0"
},
"devDependencies": {
"husky": "^0.11.4",
"eslint": "^0.1.0",
"eslint-config-imperative": "0.0.6",
"mocha": "^2.5.3",
"chai": "^3.5.0"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guidesmiths/release-clerk.git"
},
"bugs": {
"url": "https://github.com/guidesmiths/release-clerk/issues"
},
"homepage": "https://github.com/guidesmiths/release-clerk#readme"
}