-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
74 lines (74 loc) · 2.67 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
{
"name": "screwdriver-template-main",
"version": "2.0.0",
"description": "Validates, publishes, and tags templates",
"main": "index.js",
"scripts": {
"pretest": "eslint .",
"test": "nyc --report-dir ./artifacts/coverage --reporter=lcov mocha --reporter mocha-multi-reporters --reporter-options configFile=./mocha.config.json --recursive --timeout 4000 --retries 1 --exit --allow-uncaught true --color true"
},
"bin": {
"sd-template-tool": "./bin/main.js",
"template-publish": "./bin/publish.js",
"template-validate": "./bin/validate.js",
"template-remove": "./bin/remove.js",
"template-tag": "./bin/tag.js",
"template-remove-tag": "./bin/removeTag.js",
"template-remove-version": "./bin/removeVersion.js",
"template-get-version-from-tag": "./bin/getVersionFromTag.js",
"pipeline-template-validate": "./bin/pipelineTemplateValidate.js",
"pipeline-template-publish": "./bin/pipelineTemplatePublish.js",
"pipeline-template-remove": "./bin/pipelineTemplateRemove.js",
"pipeline-template-tag": "./bin/pipelineTemplateTag.js",
"pipeline-template-remove-tag": "./bin/pipelineTemplateRemoveTag.js",
"pipeline-template-remove-version": "./bin/pipelineTemplateRemoveVersion.js",
"pipeline-template-get-version-from-tag": "./bin/pipelineTemplateGetVersionFromTag.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/screwdriver-cd/template-main.git"
},
"homepage": "https://github.com/screwdriver-cd/template-main",
"bugs": "https://github.com/screwdriver-cd/screwdriver/issues",
"keywords": [
"screwdriver",
"yahoo"
],
"license": "BSD-3-Clause",
"author": "Tiffany Kyi <[email protected]>",
"contributors": [
"Dao Lam <[email protected]>",
"Darren Matsumoto <[email protected]>",
"Dayanand Sagar <[email protected]>",
"Jeremiah Wuenschel <[email protected]>",
"Jerry Zhang <[email protected]>",
"Min Zhang <[email protected]>",
"Peter Peterson <[email protected]>",
"Philip Scott <[email protected]>",
"Reetika Rastogi <[email protected]>",
"St. John Johnson <[email protected]>",
"Tiffany Kyi <[email protected]>"
],
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.28.0",
"eslint-config-screwdriver": "^7.0.0",
"mocha": "^10.1.0",
"mocha-multi-reporters": "^1.5.1",
"mocha-sonarqube-reporter": "^1.0.2",
"mockery": "^2.1.0",
"nyc": "^15.1.0",
"sinon": "^15.0.0"
},
"dependencies": {
"js-yaml": "^4.1.0",
"nomnom": "^1.8.1",
"screwdriver-request": "^2.0.1"
},
"release": {
"debug": false
},
"engines": {
"node": ">=18.0.0"
}
}