-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 787 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 787 Bytes
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
{
"name": "ms-node-server",
"description": "Demo service for DevOps purpose",
"main": "server.js",
"type": "module",
"version": "1.0.0",
"scripts": {
"start": "node server.js",
"test": "mocha **.spec.js"
},
"devDependencies": {
"mocha": "4.0.1",
"chai": "4.1.2"
},
"dependencies": {
"lodash": "^4.17.15",
"express": "^4.13.3",
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"express-session": "^1.14.2",
"pug": "^2.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/estimeo/ms-node-server.git"
},
"author": "Adrien Fenech",
"license": "ISC",
"bugs": {
"url": "https://github.com/estimeo/ms-node-server/issues"
},
"homepage": "https://github.com/estimeo/ms-node-server#readme"
}