-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.96 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
{
"name": "server",
"version": "1.0.0",
"description": "The official nachos server side",
"main": "server/app.js",
"scripts": {
"lint": "gulp lint",
"test": "gulp test",
"coveralls": "gulp coveralls"
},
"config": {
"ghooks": {
"pre-commit": "npm run-script lint"
}
},
"repository": {
"type": "git",
"url": "https://github.com/nachos/server.git"
},
"author": "Nachos team",
"license": "MIT",
"bugs": {
"url": "https://github.com/nachos/server/issues"
},
"homepage": "https://github.com/nachos/server",
"private": true,
"devDependencies": {
"chai": "^3.3.0",
"event-stream": "^3.3.1",
"ghooks": "^0.3.2",
"gulp": "^3.9.0",
"gulp-bump": "^1.0.0",
"gulp-coveralls": "^0.1.4",
"gulp-env": "^0.2.0",
"gulp-file": "^0.2.0",
"gulp-istanbul": "^0.10.1",
"gulp-jscs": "^3.0.0",
"gulp-jshint": "^1.11.2",
"gulp-mocha": "^2.1.3",
"gulp-nodemon": "^2.0.4",
"gulp-util": "^3.0.6",
"jscs-nachos": "^1.0.1",
"jshint-stylish": "^2.0.1",
"lazypipe": "^1.0.1",
"nodemon": "^1.7.1",
"open": "0.0.5",
"pem": "^1.8.1",
"run-sequence": "^1.1.4",
"supertest": "^1.1.0"
},
"dependencies": {
"body-parser": "^1.14.1",
"bunyan": "^1.5.1",
"composable-middleware": "^0.3.0",
"compression": "^1.6.0",
"cookie-parser": "^1.4.0",
"ejs": "^2.3.4",
"email-address": "^1.2.2",
"errorhandler": "^1.4.2",
"express": "^4.13.3",
"express-jwt": "^3.1.0",
"http-auth": "^2.2.8",
"jsonwebtoken": "^5.0.5",
"lodash": "^3.10.1",
"method-override": "^2.3.5",
"mkdirp": "^0.5.1",
"mongoose": "^4.1.9",
"mongoose-q": "0.1.0",
"morgan": "^1.6.1",
"multer": "^1.0.5",
"passport": "^0.3.0",
"passport-facebook": "^2.0.0",
"passport-google-oauth": "^0.2.0",
"passport-local": "^1.0.0",
"q": "^1.4.1",
"sanitize-filename": "^1.4.4",
"stream-to-json": "0.0.1",
"tar-stream": "^1.2.1"
}
}