-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 920 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
{
"name": "week6-mepl",
"version": "1.0.0",
"description": "Kin - Maria - Nikke - Pat",
"main": "index.js",
"scripts": {
"test": "tape tests/routers-test.js | tap-spec",
"testdb": "NODE_ENV=test node src/tests/database-test.js",
"dev": "nodemon src/server/server.js",
"coverage": "nyc tape src/tests/*.js | tap-spec",
"start": "node src/server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kin-au/week6-mepl.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kin-au/week6-mepl/issues"
},
"homepage": "https://github.com/kin-au/week6-mepl#readme",
"devDependencies": {
"nock": "^11.7.0",
"nodemon": "^2.0.1",
"nyc": "^14.1.1",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
},
"dependencies": {
"env2": "^2.2.2",
"pg": "^7.14.0"
}
}