-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 990 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
{
"name": "eslint-plugin-git",
"engines": {
"node": ">=4"
},
"version": "0.1.3",
"description": "Git with sanity.",
"main": "index.js",
"scripts": {
"test": "istanbul cover --dir coverage _mocha",
"posttest": "eslint rules core index.js test/rules",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benmosher/eslint-plugin-git.git"
},
"keywords": [
"eslint",
"eslintplugin",
"git"
],
"author": "Ben Mosher <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/benmosher/eslint-plugin-git/issues"
},
"homepage": "https://github.com/benmosher/eslint-plugin-git#readme",
"devDependencies": {
"coveralls": "^2.11.9",
"eslint": "^2.5.3",
"eslint-import-resolver-node": "^0.2.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"touch": "^1.0.0"
},
"dependencies": {
"eslint-module-utils": "^0.2.1"
}
}