-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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": "gilp-check-commit",
"version": "0.0.4",
"description": "Gilp plugin to validate commit messages.",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec $(find ./test -name *.tests.js) && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"lint": "semistandard *.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sophilabs/gilp-check-commit.git"
},
"keywords": [
"git",
"commit message",
"gulpplugin",
"gilpplugin"
],
"author": "Sophilabs",
"license": "MIT",
"bugs": {
"url": "https://github.com/sophilabs/gilp-check-commit/issues"
},
"homepage": "https://github.com/sophilabs/gilp-check-commit",
"dependencies": {
"gilp-util": "^0.0.7",
"through2": "^2.0.3"
},
"devDependencies": {
"coveralls": "2.11.15",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"semistandard": "^9.2.1",
"should": "^11.1.2",
"vinyl": "^2.0.1"
}
}