-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
99 lines (99 loc) · 2.48 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
{
"name": "blueoak-server",
"version": "2.13.1",
"description": "BlueOak Server",
"repository": {
"type": "git",
"url": "[email protected]:BlueOakJS/blueoak-server.git"
},
"engines": {
"node": ">=6"
},
"license": "MIT",
"main": "index.js",
"author": "PointSource LLC <[email protected]>",
"contributors": [
"David Roberts <[email protected]>",
"Sean Kennedy <[email protected]>",
"Erik Daughtrey",
"Ryan Sheppard",
"Erin Bartholomew",
"Greg Considine",
"Benjamin Schell",
"Patrick Wolf"
],
"keywords": [
"node",
"integration",
"framework",
"swagger",
"openapi",
"rest",
"express",
"middleware",
"api"
],
"scripts": {
"preversion": "npm test",
"test": "npm run test-style && npm run test-unit && npm run test-integration",
"test-unit": "JUNIT_REPORT_PATH=tests-report.xml mocha --check-leaks --reporter mocha-jenkins-reporter --globals services,__appDir test/unit",
"test-integration": "mocha test/integration",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha --report html -- test/unit",
"test-style": "eslint index.js auth examples handlers lib middleware services test testlib && echo lint complete."
},
"bin": {
"blueoak-server": "bin/blueoak-server.js"
},
"dependencies": {
"async": "^1.0.0",
"base64url": "^3.0.1",
"body-parser": "^1.19.0",
"cfenv": "^1.0.0",
"config": "^1.21.0",
"cookie-session": "^1.2.0",
"cors": "^2.6.0",
"debug": "^2.2.0",
"express": "^4.17.1",
"express-static": "^1.0.3",
"import-fresh": "^2.0.0",
"jsonwebtoken": "^5.4.1",
"lodash": "^4.17.14",
"multer": "^1.1.0",
"node-cache": "^3.0.0",
"node-statsd": "^0.1.1",
"on-headers": "^1.0.0",
"prompt": "^0.2.14",
"raw-body": "^2.4.1",
"redis": "^2.4.2",
"request": "^2.88.0",
"rsa-pem-from-mod-exp": "^0.8.4",
"semver": "^5.1.0",
"stack-trace": "0.0.9",
"strip-json-comments": "^2.0.0",
"swagger-parser": "^3.3.0",
"tv4": "^1.1.9",
"tv4-formats": "^1.0.0",
"verror": "^1.6.0",
"winston": "^1.1.0"
},
"devDependencies": {
"assert": "^1.5.0",
"eslint": "^5.9.0",
"eslint-plugin-lodash": "^6.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-jenkins-reporter": "^0.4.1"
},
"files": [
"bin",
"lib",
"testlib",
"middleware",
"handlers",
"services",
"auth",
"defaults.json",
"index.js",
"LICENSE"
]
}