forked from screwdriver-cd/store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.12 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
{
"name": "screwdriver-store",
"version": "1.0.0",
"description": "Pluggable Artifact Store (for logs, shared steps, templates, etc).",
"main": "index.js",
"scripts": {
"pretest": "eslint .",
"test": "jenkins-mocha --recursive --timeout 3000",
"start": "./bin/server",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "[email protected]:screwdriver-cd/store.git"
},
"engines": {
"node": ">=8.9.0"
},
"bin": {
"screwdriver-store": "./bin/server"
},
"homepage": "https://github.com/screwdriver-cd/store",
"bugs": "https://github.com/screwdriver-cd/store/issues",
"keywords": [
"screwdriver",
"yahoo"
],
"license": "BSD-3-Clause",
"author": "St. John Johnson <[email protected]>",
"contributors": [
"Dao Lam <[email protected]>",
"Darren Matsumoto <[email protected]>",
"Jeremiah Wuenschel <[email protected]>",
"Min Zhang <[email protected]>",
"Noah Katzman <[email protected]>",
"Philip Scott <[email protected]",
"Peter Peterson <[email protected]>",
"St. John Johnson <[email protected]",
"Tiffany Kyi <[email protected]>"
],
"release": {
"debug": false,
"verifyConditions": {
"path": "./node_modules/semantic-release/src/lib/plugin-noop.js"
}
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^4.3.0",
"eslint-config-screwdriver": "^3.0.0",
"jenkins-mocha": "^4.0.0",
"js-yaml": "^3.6.1",
"jsonwebtoken": "^8.2.1",
"mockery": "^2.0.0",
"sinon": "^4.5.0"
},
"dependencies": {
"boom": "^7.2.0",
"catbox": "^10.0.2",
"catbox-memory": "^3.1.2",
"catbox-s3": "^4.0.0",
"config": "^1.30.0",
"good": "^8.1.1",
"good-console": "^7.1.0",
"good-squeeze": "^5.0.2",
"hapi": "^17.2.3",
"hapi-auth-jwt2": "^8.1.0",
"hapi-swagger": "^9.1.1",
"hoek": "^5.0.3",
"inert": "^5.1.0",
"joi": "13.1.2",
"screwdriver-data-schema": "^18.11.5",
"vision": "^5.3.0",
"winston": "^2.2.0"
}
}