-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
93 lines (93 loc) · 2.89 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
{
"name": "screwdriver-queue-service",
"version": "4.0.0",
"description": "Screwdriver Queue Service API",
"main": "app.js",
"directories": {
"lib": "lib"
},
"dependencies": {
"@hapi/boom": "^10.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": "^10.0.1",
"amqp-connection-manager": "^4.1.9",
"amqplib": "^0.10.3",
"blipp": "^4.0.2",
"circuit-fuses": "^5.0.0",
"config": "^3.3.6",
"cron-parser": "^4.2.1",
"hapi-auth-jwt2": "^10.2.0",
"ioredis": "^5.2.3",
"joi": "^17.7.0",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.0",
"node-resque": "^9.2.0",
"redlock": "^4.2.0",
"screwdriver-aws-producer-service": "^2.0.0",
"screwdriver-data-schema": "^24.1.0",
"screwdriver-executor-docker": "^7.0.0",
"screwdriver-executor-jenkins": "^7.0.0",
"screwdriver-executor-k8s": "^16.0.0",
"screwdriver-executor-k8s-vm": "^5.0.0",
"screwdriver-executor-router": "^4.0.0",
"screwdriver-logger": "^2.0.0",
"screwdriver-request": "^2.0.1",
"string-hash": "^1.1.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-jwt": "^2.0.0",
"coveralls": "^3.0.9",
"cucumber": "^6.0.5",
"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",
"snyk": "^1.814.0",
"util": "^0.12.5"
},
"scripts": {
"start": "node ./bin/server",
"pretest": "eslint . --quiet",
"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",
"debug": "node --nolazy ./bin/server",
"functional": "cucumber-js --format=progress --tags 'not @ignore' --retry 2 --fail-fast --exit",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/screwdriver-cd/screwdriver-queue-service.git"
},
"keywords": [
"screwdriver"
],
"author": "Pritam Paul <[email protected]>",
"license": "BSD-3-Clause",
"contributors": [
"Alan Dong <[email protected]>",
"Dekus Lam <[email protected]>",
"Jithin Emmanuel <[email protected]>",
"Kevin Lu <[email protected]>",
"Lakshminarasimhan Parthasarathy <[email protected]>",
"Pritam Paul <[email protected]>",
"Tiffany Kyi <[email protected]>"
],
"engines": {
"node": ">=18.0.0"
},
"bugs": {
"url": "https://github.com/screwdriver-cd/screwdriver/issues"
},
"homepage": "https://github.com/screwdriver-cd/screwdriver-queue-service#readme",
"release": {
"debug": false
}
}