forked from cloudfoundry/service-fabrik-broker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 3.19 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
125
126
127
128
{
"name": "service-fabrik-broker",
"description": "Service Fabrik Broker",
"version": "3.1.1",
"license": "Apache-2.0",
"contributors": [
"Franzke, Rafael",
"Koser, Holger",
"Lerenc, Vedran",
"Basavaraju, Jagadish",
"Brahmandabheri, Vinayendraswamy",
"Chattopadhyay, Subhankar",
"Gadre, Ketaki",
"Kapoor, Akshay",
"Kamath, Prasad",
"Mondal, Saurav",
"Mishra, Pritish",
"Suresh, Murali"
],
"repository": {
"type": "git",
"url": "git://github.com/sap/service-fabrik-broker.git"
},
"keywords": [
"bosh",
"broker",
"cf",
"cloudfoundry",
"docker",
"services",
"service-broker",
"service-fabrik"
],
"dependencies": {
"@google-cloud/compute": "0.9.1",
"@google-cloud/storage": "1.6.0",
"agenda": "0.10.0",
"ajv": "^6.10.0",
"ali-oss": "6.0.1",
"@alicloud/pop-core": "1.7.1",
"aws-sdk": "2.35.0",
"azure-arm-compute": "4.0.0",
"azure-storage": "2.8.3",
"basic-auth": "1.0.4",
"bluebird": "3.4.0",
"body-parser": "1.15.1",
"camelcase-keys": "5.0.0",
"decamelize-keys-deep": "0.1.1",
"connect-timeout": "1.9.0",
"dockerode": "2.2.10",
"express": "4.13.4",
"express-interceptor": "1.2.0",
"express-jwt": "5.3.1",
"express-session": "1.13.0",
"helmet": "3.14.0",
"hystrixjs": "0.2.0",
"ip": "1.1.3",
"js-yaml": "3.6.1",
"json-stream": "^1.0.0",
"jsonwebtoken": "8.1.0",
"kubernetes-client": "7.0.1",
"lodash": "4.17.5",
"moment": "2.19.3",
"mongoose": "4.8.2",
"morgan": "1.6.1",
"pkgcloud": "1.7.0",
"pubsub-js": "1.5.4",
"pug": "2.0.0-beta3",
"request": "2.84.0",
"riemannjs": "1.0.1",
"rxjs": "5.4.0",
"session-file-store": "0.2.0",
"ssh2": "^0.8.2",
"uuid": "2.0.2",
"winston": "2.2.0",
"winston-syslog": "1.2.5"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"chai": "^4.0.0",
"chai-http": "^2.0.1",
"coveralls": "^3.0.0",
"docdash": "^0.3.0",
"esformatter": "^0.10.0",
"esformatter-braces": "^1.2.1",
"esformatter-dot-notation": "^1.3.1",
"esformatter-quote-props": "^2.0.0",
"esformatter-quotes": "^1.1.0",
"esformatter-semicolons": "^1.1.2",
"esformatter-use-strict": "^3.0.0",
"esformatter-var-each": "^2.1.0",
"eslint": "^5.11.1",
"eslint-config-google": "^0.11.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-mocha": "^5.2.1",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "^1.15.3",
"isparta": "^4.0.0",
"jscover": "^1.0.0",
"jsdoc": "^3.4.0",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.3.0",
"nock": "^8.0.0",
"proxyquire": "^1.7.9",
"sinon": "^7.1.1",
"sinon-chai": "^3.0.0"
},
"engines": {
"node": ">= 6.2.1"
},
"files": [
"LICENSE",
"NOTICE",
"README.md",
"broker/server.js",
"common/app.js",
"broker/lib/"
],
"scripts": {
"start": "node broker/server.js",
"eslint": "./node_modules/eslint/bin/eslint.js .",
"jsdoc": "jsdoc -c jsdoc.json",
"test": "./test/init test",
"test-ci": "./test/init test-ci",
"test-cov": "./test/init test-cov",
"test-coverall": "./test/init test-coverall"
}
}