-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 858 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 858 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
34
35
36
37
38
39
{
"name": "y",
"version": "0.0.1",
"description": "Shopping list app to demo 'the modern classic'",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "mocha --exit"
},
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.12.4",
"morgan": "^1.7.0",
"uuid": "^2.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Thinkful-Ed/node-shopping-list-v5.git"
},
"keywords": [
"node",
"hyperdev",
"express"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Thinkful-Ed/node-shopping-list-v5/issues"
},
"homepage": "https://github.com/Thinkful-Ed/node-shopping-list-v5#readme",
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^4.0.0",
"mocha": "^4.0.1"
},
"author": "",
"directories": {
"test": "test"
}
}