-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "overview-broker",
"version": "1.0.0",
"description": "A service broker providing an overview of platform connections for debugging.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "NODE_ENV=testing mocha --recursive --timeout 10000 --exit tests"
},
"author": "Matthew McNeeney <[email protected]>",
"repository": "https://github.com/cloudfoundry/overview-broker",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"body-parser": "latest",
"cfenv": "^1.2.4",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"express-validator": "^6.10.1",
"jsonschema": "^1.4.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"pug": "^3.0.2",
"randomstring": "^1.1.5",
"request": "^2.88.2",
"sha256": "latest",
"uuid": "^8.3.2"
},
"devDependencies": {
"assert": "latest",
"mocha": "^8.3.2",
"should": "^13.2.3",
"supertest": "^6.1.3"
},
"engines": {
"node": "10.x.x"
}
}