This repository was archived by the owner on Apr 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.98 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.98 KB
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
{
"name": "screwdriver-queue-worker",
"version": "1.0.0",
"description": "Creates queue worker(s)",
"main": "index.js",
"scripts": {
"pretest": "eslint .",
"test": "jenkins-mocha --recursive",
"start": "node index.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "git@github.com:screwdriver-cd/queue-worker.git"
},
"homepage": "https://github.com/screwdriver-cd/queue-worker",
"bugs": "https://github.com/screwdriver-cd/screwdriver/issues",
"keywords": [
"screwdriver",
"yahoo"
],
"license": "BSD-3-Clause",
"author": "Min Zhang <minzhangcmu@gmail.com>",
"contributors": [
"Dao Lam <daolam112@gmail.com>",
"Darren Matsumoto <aeneascorrupt@gmail.com>",
"Ian Fox <ianfox97@gmail.com>",
"Jeremiah Wuenschel <jeremiah.wuenschel@gmail.com>",
"Jithin Emmanuel <jithin1987@gmail.com>",
"Joel Sequeira <joelseq96@gmail.com>",
"Min Zhang <minzhangcmu@gmail.com>",
"Peter Peterson <jedipetey@gmail.com>",
"Reetika Rastogi <r3rastogi@gmail.com>",
"St. John Johnson <st.john.johnson@gmail.com",
"Tiffany Kyi <tiffanykyi@gmail.com>"
],
"devDependencies": {
"chai": "^4.1.1",
"eslint": "^4.19.1",
"eslint-config-screwdriver": "^3.0.1",
"jenkins-mocha": "^8.0.0",
"mockery": "^2.1.0",
"sinon": "^7.2.7"
},
"dependencies": {
"amqp-connection-manager": "^2.3.0",
"amqplib": "^0.5.3",
"config": "^1.31.0",
"hoek": "^5.0.4",
"ioredis": "^3.2.2",
"node-resque": "^5.5.3",
"request": "^2.88.0",
"screwdriver-executor-docker": "^4.2.2",
"screwdriver-executor-jenkins": "^4.5.0",
"screwdriver-executor-k8s": "^13.6.1",
"screwdriver-executor-k8s-vm": "^3.2.2",
"screwdriver-executor-router": "^1.0.11",
"screwdriver-logger": "^1.0.0"
},
"release": {
"debug": false,
"verifyConditions": {
"path": "./node_modules/semantic-release/src/lib/plugin-noop.js"
}
}
}