-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 854 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 854 Bytes
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
{
"name": "@xinix/cicd",
"version": "3.1.3",
"description": "CI/CD",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "npx mocha test/** --watch-ignore tmp_test"
},
"repository": {
"type": "git",
"url": "https://github.com/xinix-technology/cicd.git"
},
"bin": {
"cicd": "./bin/cicd.js"
},
"author": "Ganesha <reekoheek@gmail.com> (http://sagara.id)",
"license": "MIT",
"dependencies": {
"colors": "^1.4.0",
"debug": "^4.1.1",
"fs-extra": "^9.0.1",
"js-yaml": "^3.14.0",
"minimist": "^1.2.5",
"split2": "^3.1.1",
"sprintf-js": "^1.1.2",
"strip-color": "^0.1.0"
},
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-xinix": "^1.1.14",
"husky": "^4.2.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
}
}