-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
83 lines (83 loc) · 3.09 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
82
83
{
"name": "@bcgov/nr-pipeline-ext",
"version": "0.1.0-rc.13",
"description": "Natural Resource (IIT) Module/Extension for pipeline-cli",
"engines": {
"node": ">=12"
},
"files": [
"bin",
"lib",
"config"
],
"main": "index.js",
"scripts": {
"test": "mocha --forbid-only --grep @slow --invert && tsc --noEmit -p .",
"coverage": "nyc --reporter=html mocha --reporter mochawesome",
"version": "echo \"node@$(node --version) ($(which node))\" && echo \"npm@$(npm --version) ($(which npm))\"",
"test:watch:single": "mocha -R list -w $1",
"test:ci": "nyc --reporter=text mocha --forbid-only --grep @slow --invert && tsc --noEmit -p .",
"test:ci:html": "nyc --reporter=html mocha --grep @slow --invert",
"test:watch:ci": "mocha -w --grep @slow --invert",
"mocha": "mocha",
"nyc": "nyc",
"depcheck": "depcheck",
"eslint": "eslint .",
"prettier:fix": "prettier --write '**/*.js'",
"prettier": "prettier '**/*.js' --check",
"gen-workflows": "node util/create-jira-workflow-class.js lib/assets/RFC-Workflow-v1.2.1.xml lib/JiraRfcWorkflowV1.2.1.js && node util/create-jira-workflow-class.js lib/assets/RFD-Workflow-V1.2.2.xml lib/JiraRfdWorkflowV1.2.2.js && node util/create-jira-workflow-class.js lib/assets/RFC-Workflow-v2.0.0.xml lib/JiraRfcWorkflowV2.0.0.js",
"tsc": "tsc --noEmit -p .",
"publish:latest": "npm --no-git-tag-version version prerelease && npm publish --access public --tag latest",
"publish:alpha": "npm --no-git-tag-version version prerelease && npm publish --access public --tag alpha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BCDevOps/nr-pipeline-ext.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/BCDevOps/nr-pipeline-ext/issues"
},
"homepage": "https://github.com/BCDevOps/nr-pipeline-ext#readme",
"dependencies": {
"@bcgov/pipeline-cli": "^1.0.1-2",
"commander": "^5.1.0",
"inquirer": "^7.3.3",
"jira-connector": "^2.16.1",
"moment-timezone": "^0.5.31",
"replace-in-file": "^4.3.1",
"request": "^2.88.2",
"rsync": "^0.6.1",
"winston": "^3.3.3"
},
"peerDependencies": {
"@bcgov/pipeline-cli": "^1.0.1-2",
"rsync": "^0.6.1",
"winston": "^3.2.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chalk": "^2.0.0",
"depcheck": "^0.9.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-require-path-exists": "^1.1.9",
"eslint-plugin-standard": "^4.0.1",
"expect": "^24.9.0",
"jest-snapshot": "^26.4.2",
"lodash.merge": "^4.6.2",
"mocha": "^6.2.3",
"nock": "^11.9.1",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"sinon": "^7.5.0",
"typescript": "^3.9.7",
"xml-js": "^1.6.11"
}
}