forked from screwdriver-cd/queue-worker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.84 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
{
"name": "screwdriver-queue-worker",
"version": "1.0.0",
"description": "Create 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": "[email protected]: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 <[email protected]>",
"contributors": [
"Dao Lam <[email protected]>",
"Darren Matsumoto <[email protected]>",
"Ian Fox <[email protected]>",
"Jeremiah Wuenschel <[email protected]>",
"Jithin Emmanuel <[email protected]>",
"Joel Sequeira <[email protected]>",
"Min Zhang <[email protected]>",
"Peter Peterson <[email protected]>",
"Reetika Rastogi <[email protected]>",
"St. John Johnson <[email protected]",
"Tiffany Kyi <[email protected]>"
],
"devDependencies": {
"chai": "^4.1.1",
"eslint": "^4.3.0",
"eslint-config-screwdriver": "^3.0.0",
"jenkins-mocha": "^5.0.0",
"mockery": "^2.1.0",
"sinon": "^3.1.0"
},
"dependencies": {
"config": "^1.26.1",
"ioredis": "^3.1.4",
"node-resque": "^4.0.7",
"request": "^2.81.0",
"screwdriver-executor-docker": "^2.2.2",
"screwdriver-executor-k8s": "^10.3.4",
"screwdriver-executor-k8s-vm": "^1.1.3",
"screwdriver-executor-router": "^1.0.1",
"winston": "^2.3.1"
},
"release": {
"debug": false,
"verifyConditions": {
"path": "./node_modules/semantic-release/src/lib/plugin-noop.js"
}
}
}