forked from screwdriver-cd/screwdriver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.81 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
{
"name": "screwdriver-api",
"version": "0.5.0",
"description": "API server for the Screwdriver CD service",
"main": "index.js",
"scripts": {
"pretest": "eslint .",
"test": "jenkins-mocha --recursive --timeout 3000",
"start": "./bin/server",
"functional": "cucumber-js --format=pretty --tags 'not @ignore'",
"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"
},
"bin": {
"screwdriver-api": "./bin/server"
},
"repository": {
"type": "git",
"url": "[email protected]:screwdriver-cd/screwdriver.git"
},
"engines": {
"node": ">=6.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"
]
},
"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]>"
],
"dependencies": {
"async": "^2.0.1",
"bell": "^8.0.0",
"boom": "^4.0.0",
"config": "^1.21.0",
"crumb": "^6.0.3",
"good": "^7.0.0",
"good-console": "^6.1.1",
"good-squeeze": "^5.0.0",
"hapi": "^16.4.3",
"hapi-auth-bearer-token": "^4.3.0",
"hapi-auth-cookie": "^6.1.1",
"hapi-auth-jwt2": "^7.3.0",
"hapi-swagger": "^7.0.0",
"hoek": "^4.0.1",
"inert": "^4.0.1",
"joi": "^10.6.0",
"js-yaml": "^3.6.1",
"jsonwebtoken": "^7.1.6",
"license-checker": "^11.0.0",
"ndjson": "^1.4.3",
"node-env-file": "^0.1.8",
"request": "^2.74.0",
"requestretry": "^1.12.0",
"screwdriver-artifact-bookend": "^1.0.1",
"screwdriver-build-bookend": "^2.0.1",
"screwdriver-config-parser": "^3.13.0",
"screwdriver-data-schema": "^18.9.0",
"screwdriver-datastore-sequelize": "^4.0.0",
"screwdriver-executor-docker": "^2.2.2",
"screwdriver-executor-k8s": "^10.3.3",
"screwdriver-executor-k8s-vm": "^1.0.0",
"screwdriver-executor-queue": "^1.1.0",
"screwdriver-executor-router": "^1.0.0",
"screwdriver-models": "^26.3.0",
"screwdriver-notifications-email": "^1.1.2",
"screwdriver-scm-github": "^5.0.0",
"screwdriver-scm-router": "^1.0.0",
"screwdriver-template-validator": "^3.0.0",
"screwdriver-workflow-parser": "^1.1.1",
"tinytim": "^0.1.1",
"verror": "^1.6.1",
"vision": "^4.1.0",
"winston": "^2.2.0"
},
"devDependencies": {
"chai": "~3.5.0",
"chai-as-promised": "^6.0.0",
"chai-jwt": "^2.0.0",
"coveralls": "^2.11.12",
"cucumber": "2.3.1",
"eslint": "^4.3.0",
"eslint-config-screwdriver": "^3.0.0",
"github": "^8.1.1",
"jenkins-mocha": "^4.0.0",
"mockery": "^2.0.0",
"mz": "^2.6.0",
"nock": "^9.0.0",
"node-plantuml": "^0.5.0",
"npm-auto-version": "^1.0.0",
"sinon": "^2.3.1"
}
}