This repository has been archived by the owner on Jan 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
81 lines (81 loc) · 2.01 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@bcgov/pipeline-cli",
"version": "1.0.1",
"description": "Pipeline Utility",
"main": "index.js",
"files": [
"index.js",
"/lib"
],
"nyc": {
"all": true,
"include": [
"lib/**/*.js"
],
"exclude": [
"coverage/**",
"packages/*/test/**",
"test/**",
"test{,-*}.js",
"**/*{.,-}test.js",
"**/__tests__/**",
"**/node_modules/**",
"**/babel.config.js",
"lib/Pipeline.js",
"lib/PipelineGate.js",
"lib/PipelineStage.js",
"lib/*.1.js"
]
},
"scripts": {
"test": "mocha test/**/**.test.js",
"coverage": "nyc --reporter=lcovonly mocha --reporter mochawesome test/**/**.test.js",
"test:fast": "mocha --grep @slow --invert test/**/**.test.js",
"e2e": "nyc --reporter=html mocha test/**/**.test.js",
"test:lint": "eslint --env node --ext .js lib",
"release": "npm --no-git-tag-version version prerelease && npm publish --tag alpha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bcDevOps/pipeline-cli.git"
},
"author": "Clecio Varjao",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bcDevOps/pipeline-cli/issues"
},
"homepage": "https://github.com/bcDevOps/pipeline-cli#readme",
"dependencies": {
"debug": "^4.2.0",
"lodash.isempty": "^4.0.1",
"lodash.isfunction": "^3.0.9",
"lodash.isplainobject": "^4.0.6",
"lodash.isstring": "^4.0.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-prettier": "^3.1.4",
"expect": "^24.9.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"mocha": "^8.1.3",
"mochawesome": "^4.1.0",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"sinon": "^7.5.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}