-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.14 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
{
"name": "affiance",
"version": "1.8.0",
"description": "A configurable and extendable Git hook manager for node projects",
"main": "lib/index.js",
"scripts": {
"test": "mocha test/unit/",
"postinstall": "scripts/postinstall.js"
},
"bin": {
"affiance": "./bin/affiance.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/l8on/affiance.git"
},
"keywords": [
"git",
"hooks",
"githooks",
"commit",
"lint"
],
"author": "Leighton Wallace",
"license": "MIT",
"bugs": {
"url": "https://github.com/l8on/affiance/issues"
},
"homepage": "https://github.com/l8on/affiance#readme",
"dependencies": {
"cli-color": "^1.1.0",
"commander": "^2.9.0",
"executable": "^4.1.0",
"fs-extra": "^1.0.0",
"glob": "^7.1.1",
"ini": "^1.3.4",
"js-yaml": "^3.7.0",
"lodash": "^4.17.4",
"os": "^0.1.1",
"semver": "^5.3.0",
"underscore.string": "^3.3.4",
"uuid": "^3.0.0"
},
"devDependencies": {
"affiance": "file:./",
"chai": "^3.5.0",
"eslint": "^4.18.2",
"mocha": "^3.1.2",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0"
}
}