-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.83 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": "github-listener",
"version": "0.0.0-development",
"repository": {
"type": "git",
"url": "https://github.com/itsapi/github-listener.git"
},
"description": "A Node.js continuous deployment system for Github",
"main": "src/index.js",
"bin": {
"github-listener": "./bin/github-listener"
},
"scripts": {
"start": "./bin/github-listener",
"lint": "jshint .",
"test": "npm run lint && tape tests/*.js | tap-spec",
"coverage": "istanbul cover tape tests/*.js",
"coverage:report": "codeclimate-test-reporter < ./coverage/lcov.info",
"semantic-release": "semantic-release"
},
"dependencies": {
"ansi-to-html": "^0.7.2",
"async-tools": "^1.3.0",
"bl": "~2.2.1",
"jade": "~1.11.0",
"logging-tool": "~1.2.3",
"minimist": "^1.2.8",
"node-static": "^0.7.10",
"semver": "^5.5.0",
"socket.io": "~2.5.0",
"string-format": "~2.0.0"
},
"devDependencies": {
"codeclimate-test-reporter": "~0.5.0",
"cz-conventional-changelog": "^2.1.0",
"ghooks": "^2.0.3",
"istanbul": "~0.4.5",
"jshint": "~2.9.5",
"semantic-release": "^15.5.0",
"tap-spec": "~5.0.0",
"tape": "~4.9.0",
"through2": "~2.0.3",
"validate-commit-msg": "^2.14.0"
},
"bugs": {
"url": "https://github.com/itsapi/github-listener/issues"
},
"homepage": "https://github.com/itsapi/github-listener",
"contributors": [
"Geraint White <mail@geraintwhite.co.uk>",
"Oliver Faircliff <mail@oliverfaircliff.com>"
],
"license": "GPL-2.0",
"author": "Dvbris <mail@dvbris.com>",
"config": {
"ghooks": {
"pre-commit": "npm run lint",
"post-commit": "git status",
"pre-push": "npm test",
"post-merge": "npm install",
"commit-msg": "validate-commit-msg"
},
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}