forked from BlueOakJS/blueoak-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.29 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
{
"name": "blueoak-server",
"version": "2.3.1",
"description": "BlueOak Server",
"repository": {
"type": "git",
"url": "git@github.com:BlueOakJS/blueoak-server.git"
},
"license": "MIT",
"main": "index.js",
"author": "PointSource LLC <github@pointsource.com>",
"contributors": [
"Sean Kennedy <sean.kennedy@pointsource.com>",
"Greg Considine <greg@greg-considine.com>",
"Erik Daughtrey <erik.daughtrey@pointsource.com>",
"Erin Bartholomew <erin.bartholomew@pointsource.com>",
"Benjamin Schell <ben@benschell.org>",
"Patrick Wolf <patrick.wolf@pointsource.com>"
],
"keywords": [
"node",
"framework",
"swagger",
"rest",
"express",
"api"
],
"scripts": {
"test": "JUNIT_REPORT_PATH=tests-report.xml mocha --check-leaks --reporter mocha-jenkins-reporter --globals services,__appDir test/unit; npm run lint",
"test-integration": "mocha test/integration",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha --report html -- test/unit",
"lint": "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": "^1.0.4",
"body-parser": "^1.12.4",
"cfenv": "^1.0.0",
"config": "^1.21.0",
"cookie-session": "^1.2.0",
"cors": "^2.6.0",
"debug": "^2.2.0",
"express": "^4.12.4",
"express-static": "^1.0.3",
"jsonwebtoken": "^5.4.1",
"lodash": "^3.9.3",
"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.0.2",
"redis": "^2.4.2",
"request": "^2.55.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.4.1",
"eslint": "^3.3.1",
"istanbul": "^0.4.1",
"mocha": "^3.0.2",
"mocha-jenkins-reporter": "^0.1.8"
},
"files": [
"bin",
"lib",
"testlib",
"middleware",
"handlers",
"services",
"auth",
"defaults.json",
"index.js",
"LICENSE"
]
}