-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1021 Bytes
/
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": "githook-scripts",
"version": "1.1.0",
"description": "easily run npm scripts in the git lifecycle",
"scripts": {
"lint": "eslint --ignore-path .gitignore ./",
"pretest": "npm run lint && npm pack",
"test": "mocha \"test/*.spec.js\"",
"postinstall": "node postinstall.js"
},
"repository": {
"type": "git",
"url": "https://github.com/PixnBits/githook-scripts.git"
},
"keywords": [
"git",
"hooks",
"npm",
"scripts"
],
"author": "PixnBits",
"license": "MIT",
"bugs": {
"url": "https://github.com/PixnBits/githook-scripts/issues"
},
"homepage": "https://github.com/PixnBits/githook-scripts",
"dependencies": {
"debug": "^2.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-files": "^1.4.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.2.2",
"mocha": "^3.0.2",
"rimraf": "^2.5.4"
}
}