-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
65 lines (65 loc) · 1.84 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
{
"name": "svmp-overseer",
"description": "Secure Virtual Mobile Platform central controller, login, and API server",
"author": "Dave Bryson",
"contributors": [
"Dave Bryson",
"David Keppler",
"Joe Portner"
],
"version": "2.0.0",
"license": "Apache-2.0",
"engines": {
"node": "0.10.x",
"npm": "1.4.x"
},
"private": true,
"scripts": {
"test": "grunt --config test/config.yaml",
"postinstall": "bower install --config.interactive=false --allow-root"
},
"bin": {
"svmp-overseer": "./server.js",
"svmp-create-token": "./create-token.js"
},
"dependencies": {
"aws-sdk": "~2.0.8",
"body-parser": "~1.0.0",
"commander": "^2.3.0",
"express": "~4.2.0",
"express-session": "~1.8.1",
"method-override": "~2.2.0",
"consolidate": "~0.10.0",
"swig": "~1.3.2",
"passport": "~0.2.0",
"passport-local": "~1.0.0",
"cookie-parser": "~1.0.1",
"connect-mongo": "~0.4.0",
"csurf": "~1.2.0",
"lodash": "~2.4.1",
"grunt-cli": "~0.1.13",
"js-yaml": "^3.2.1",
"jsonwebtoken": "~0.4.1",
"mongoose": "~3.8.8",
"mongoose-q": "~0.0.10",
"morgan": "^1.3.1",
"ms": "^0.6.2",
"nconf": "^0.6.9",
"node-uuid": "~1.4.1",
"pkgcloud": "git+https://github.com/SVMP/pkgcloud.git#0.9.4-svmp",
"q": "~1.0.1",
"revalidator": "^0.2.0",
"shelljs": "^0.3.0",
"to-date": "latest",
"winston": "~0.7.3",
"nodemailer": "~0.7.0"
},
"devDependencies": {
"mocha": "latest",
"supertest": "latest",
"grunt": "~0.4.5",
"grunt-env": "~0.4.1",
"grunt-mocha-test": "~0.10.0",
"load-grunt-tasks": "~0.4.0"
}
}