-
Notifications
You must be signed in to change notification settings - Fork 151
/
package.json
39 lines (39 loc) · 940 Bytes
/
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
{
"name": "express_code_structure",
"version": "3.1.0",
"description": "Scaffolding explaining a method for organizing files in an express.js web application project",
"scripts": {
"test": "./bin/test.sh",
"start": "./app/server.js | bistre",
"lint": "standard"
},
"main": "./app/server",
"engines": {
"node": "6"
},
"repository": {
"type": "git",
"url": "https://github.com/focusaurus/express_code_structure.git"
},
"keywords": [
"express.js",
"scaffolding"
],
"author": "Peter Lyons <[email protected]> (http://peterlyons.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/focusaurus/express_code_structure/issues"
},
"dependencies": {
"bole": "4.0.0",
"express": "4.17.1",
"pug": "3.0.0"
},
"devDependencies": {
"bistre": "1.0.1",
"standard": "14.3.4",
"supertest": "4.0.2",
"tap-dot": "2.0.0",
"tape": "5.0.1"
}
}