-
Notifications
You must be signed in to change notification settings - Fork 170
/
package.json
167 lines (167 loc) · 6.08 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{
"name": "screwdriver-api",
"version": "7.0.0",
"description": "API server for the Screwdriver.cd service",
"main": "index.js",
"scripts": {
"pretest": "eslint . --quiet",
"test": "nyc --report-dir ./artifacts/coverage --reporter=lcov mocha --reporter mocha-multi-reporters --reporter-options configFile=./mocha.config.json --recursive --timeout 10000 --retries 1 --exit --allow-uncaught true --color true",
"test-debug": "mocha --inspect-brk ./test/**/*.js",
"start": "./bin/server",
"debug": "node --nolazy ./bin/server",
"profile": "node --prof ./bin/server",
"functional": "cucumber-js --format=progress --tags '(not @ignore) and @prod' --retry 2 --fail-fast --exit",
"functional-beta": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and (not @x1) and (not @parallel)' --retry 2 --fail-fast --exit",
"functional-beta-parallel": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and (not @x1) and @parallel' --retry 2 --fail-fast --exit --parallel 4",
"functional-beta-x1-parallel": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @x1 and @parallel' --retry 2 --fail-fast --exit --parallel 4",
"functional-dev": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod)' --retry 2 --fail-fast --exit",
"create-test-user": "node -e 'require(\"./features/scripts/create-test-user.js\")()'",
"diagrams": "find ./design/diagrams -type f -name \\*.puml -print0 | xargs -0 -n 1 -I DIAGRAM puml generate DIAGRAM -o DIAGRAM.png",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"bin": {
"screwdriver-api": "./bin/server"
},
"repository": {
"type": "git",
"url": "[email protected]:screwdriver-cd/screwdriver.git"
},
"engines": {
"node": ">=18.0.0"
},
"greenkeeper": {
"ignore": [
"screwdriver-build-bookend",
"screwdriver-config-parser",
"screwdriver-data-schema",
"screwdriver-datastore-sequelize",
"screwdriver-executor-docker",
"screwdriver-executor-k8s",
"screwdriver-executor-k8s-vm",
"screwdriver-executor-queue",
"screwdriver-executor-router",
"screwdriver-models",
"screwdriver-scm-github",
"screwdriver-scm-bitbucket",
"screwdriver-scm-gitlab"
]
},
"homepage": "http://screwdriver.cd",
"bugs": "https://github.com/screwdriver-cd/screwdriver/issues",
"keywords": [
"screwdriver",
"yahoo",
"continuous delivery",
"continuous integration"
],
"license": "BSD-3-Clause",
"author": "Darren Matsumoto <[email protected]>",
"contributors": [
"Dao Lam <[email protected]>",
"Darren Matsumoto <[email protected]>",
"Filbert Jahja <[email protected]>",
"Jeremiah Wuenschel <[email protected]>",
"Min Zhang <[email protected]>",
"Noah Katzman <[email protected]>",
"Peter Peterson <[email protected]>",
"Reetika Rastogi <[email protected]>",
"St. John Johnson <[email protected]>",
"Tiffany Kyi <[email protected]>",
"Jithin Emmanuel <[email protected]>"
],
"dependencies": {
"@hapi/bell": "^13.0.0",
"@hapi/boom": "^10.0.0",
"@hapi/cookie": "^12.0.0",
"@hapi/crumb": "^9.0.0",
"@hapi/good": "^9.0.1",
"@hapi/good-console": "^9.0.1",
"@hapi/good-squeeze": "^6.0.0",
"@hapi/hapi": "^21.1.0",
"@hapi/hoek": "^11.0.0",
"@hapi/inert": "^7.0.0",
"@hapi/vision": "^7.0.0",
"@promster/hapi": "^14.0.0",
"archiver": "^7.0.1",
"async": "^3.2.4",
"badge-maker": "^3.3.1",
"config": "^3.3.8",
"dayjs": "^1.11.7",
"got": "^11.8.3",
"hapi-auth-bearer-token": "^8.0.0",
"hapi-auth-jwt2": "^10.4.0",
"hapi-rate-limit": "^7.1.0",
"hapi-swagger": "^17.2.1",
"ioredis": "^5.2.3",
"joi": "^17.7.0",
"js-yaml": "^3.14.1",
"jsonwebtoken": "^9.0.0",
"license-checker": "^25.0.1",
"lodash.mergewith": "^4.6.2",
"ndjson": "^2.0.0",
"node-env-file": "^0.1.8",
"prom-client": "^12.0.0",
"redlock": "^4.2.0",
"screwdriver-artifact-bookend": "^2.0.0",
"screwdriver-build-bookend": "^4.0.0",
"screwdriver-cache-bookend": "^3.0.0",
"screwdriver-command-validator": "^4.0.0",
"screwdriver-config-parser": "^11.0.0",
"screwdriver-coverage-bookend": "^2.0.0",
"screwdriver-coverage-sonar": "^4.1.1",
"screwdriver-data-schema": "^24.1.0",
"screwdriver-datastore-sequelize": "^9.0.0",
"screwdriver-executor-base": "^10.0.0",
"screwdriver-executor-docker": "^7.0.0",
"screwdriver-executor-k8s": "^16.0.0",
"screwdriver-executor-k8s-vm": "^5.0.0",
"screwdriver-executor-queue": "^5.0.0",
"screwdriver-executor-router": "^4.0.0",
"screwdriver-logger": "^2.0.0",
"screwdriver-models": "^30.2.0",
"screwdriver-notifications-email": "^4.0.0",
"screwdriver-notifications-slack": "^6.0.0",
"screwdriver-request": "^2.0.1",
"screwdriver-scm-base": "^9.0.0",
"screwdriver-scm-bitbucket": "^6.0.0",
"screwdriver-scm-github": "^13.0.0",
"screwdriver-scm-gitlab": "^4.0.0",
"screwdriver-scm-router": "^8.0.0",
"screwdriver-template-validator": "^9.0.0",
"screwdriver-workflow-parser": "^5.0.0",
"sqlite3": "^5.1.4",
"stream": "0.0.3",
"tinytim": "^0.1.1",
"uuid": "^9.0.0",
"verror": "^1.10.1"
},
"release": {
"debug": false,
"verifyConditions": {
"path": "./node_modules/semantic-release/src/lib/plugin-noop.js"
}
},
"devDependencies": {
"@cucumber/cucumber": "^9.0.0",
"@octokit/rest": "^20.0.2",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-jwt": "^2.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.28.0",
"eslint-config-screwdriver": "^7.0.0",
"form-data": "^4.0.0",
"import-fresh": "^3.3.0",
"mocha": "^10.1.0",
"mocha-multi-reporters": "^1.5.1",
"mocha-sonarqube-reporter": "^1.0.2",
"mz": "^2.7.0",
"nock": "^13.2.9",
"npm-auto-version": "^1.0.0",
"nyc": "^15.1.0",
"rewire": "^6.0.0",
"rewiremock": "^3.14.4",
"sinon": "^15.0.0",
"stream-to-promise": "^3.0.0"
}
}