-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 903 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
42
43
{
"name": "gilp-util",
"description": "Utils for gilp.",
"version": "0.0.11",
"main": "lib/index.js",
"scripts": {
"lint": "semistandard",
"pretest": "npm run lint --scripts-prepend-node-path",
"test": "jest",
"coverage": "jest --coverage && cat ./tests/coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/sophilabs/gilp-util.git"
},
"keywords": [
"gulp",
"git",
"hooks"
],
"author": "Sophilabs",
"license": "MIT",
"bugs": {
"url": "https://github.com/sophilabs/gilp-util/issues"
},
"engines": {
"node": ">= 10.0"
},
"homepage": "https://github.com/sophilabs/gilp-util#readme",
"dependencies": {
"yargs": "16.0.3"
},
"devDependencies": {
"coveralls": "3.1.0",
"jest": "^26.5.3",
"semistandard": "*"
},
"semistandard": {
"env": [
"jest"
]
}
}