forked from observing/pre-commit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
{
"name": "pre-commit",
"version": "1.0.6",
"description": "Automatically install pre-commit hooks for your npm modules.",
"main": "index.js",
"scripts": {
"coverage": "istanbul cover ./node_modules/.bin/_mocha -- test.js",
"example-fail": "echo \"This is the example hook, I exit with 1\" && exit 1",
"example-pass": "echo \"This is the example hook, I exit with 0\" && exit 0",
"install": "node install.js",
"test": "mocha test.js",
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- test.js",
"uninstall": "node uninstall.js"
},
"repository": {
"type": "git",
"url": "git://github.com/observing/pre-commit.git"
},
"keywords": [
"git",
"hooks",
"npm",
"pre-commit",
"precommit",
"run",
"test",
"development"
],
"author": "Arnout Kazemier <opensource@observe.it>",
"homepage": "https://github.com/observing/pre-commit",
"license": "MIT",
"dependencies": {
"shelljs": "0.3.x"
},
"devDependencies": {
"assume": "1.1.x",
"istanbul": "0.3.x",
"mocha": "2.1.x",
"pre-commit": "git://github.com/observing/pre-commit.git"
}
}