-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 KB
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
{
"name": "pre-commit",
"version": "2.0.0",
"description": "Automatically install pre-commit hooks for your npm modules.",
"main": "index.js",
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text 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": "nyc --reporter=lcovonly mocha 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",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=16.13.0"
},
"dependencies": {
"cross-spawn": "^7.0.5",
"which": "^4.0.0"
},
"devDependencies": {
"assume": "^2.3.0",
"mocha": "^10.4.0",
"nyc": "^15.1.0"
}
}