forked from anandbitm/expressjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.5 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.5 KB
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
{
"name": "expressjs",
"version": "1.0.0",
"description": "ExpressJS, Node.js repository",
"main": "index.js",
"scripts": {
"start": "nodemon server.js",
"test-mocha": "mocha --timeout 10000",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "istanbul cover --reporter=html --reporter=text mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodesense/expressjs.git"
},
"keywords": [
"expressjs",
"nodejs"
],
"author": "Gopalakrishnan Subramani",
"license": "ISC",
"bugs": {
"url": "https://github.com/nodesense/expressjs/issues"
},
"homepage": "https://github.com/nodesense/expressjs#readme",
"dependencies": {
"body-parser": "^1.17.1",
"chai": "^3.5.0",
"connect-ensure-login": "^0.1.1",
"connect-mongo": "^1.3.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.3",
"csurf": "^1.9.0",
"ejs": "^2.5.6",
"express": "^4.15.2",
"express-session": "^1.15.1",
"express-validator": "^3.1.2",
"istanbul": "^0.4.5",
"jquery": "^3.2.1",
"jwt-simple": "^0.5.1",
"lodash": "^4.17.4",
"mongodb": "^2.2.25",
"mongoose": "^4.9.1",
"morgan": "^1.8.1",
"multer": "^1.3.0",
"passport": "^0.3.2",
"passport-github": "^1.1.0",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0",
"socket.io": "^1.7.3",
"validator": "^7.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"coveralls": "^2.12.0",
"mocha": "^3.2.0"
}
}