-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.14 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "ci-script",
"version": "1.1.1",
"description": "Just execute the CI scripts.",
"preferGlobal": true,
"main": "index.js",
"bin": {
"ci-script": "ci-script.js"
},
"engines": {
"node": ">=8.6.0"
},
"scripts": {
"precommit": "lint-staged",
"test": "nyc --reporter=lcov --reporter=text-lcov ava"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/WindomZ/ci-script.git"
},
"keywords": [
"ci",
"travis",
"script"
],
"author": "WindomZ <git.windomz@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/WindomZ/ci-script/issues"
},
"homepage": "https://github.com/WindomZ/ci-script#readme",
"dependencies": {
"caporal": "^1.1.0",
"js-yaml": "^3.12.1",
"shelljs": "^0.8.3"
},
"devDependencies": {
"ava": "^2.0.0",
"coveralls": "^3.0.2",
"eslint": "^5.14.0",
"eslint-config-prettier": "^6.1.0",
"husky": "^2.0.0",
"lint-staged": "^10.0.3",
"nyc": "^15.0.0",
"prettier": "^2.0.0"
}
}