-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 KB
/
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
40
41
42
43
44
45
46
{
"name": "week6-coda-squall",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "nyc --reporter=lcov tape tests/*test.js | tap-spec",
"start": "node src/server.js",
"coverage": "codecov",
"build-db": "node src/database/db_build.js",
"build-test-db": "NODE_ENV=test node src/database/db_build.js",
"dev": "NODE_ENV=test nodemon src/server.js",
"alltests": "NODE_ENV=test tape tests/*.test.js | tap-spec",
"servertest": "NODE_ENV=test tape tests/server.test.js | tap-spec",
"dbtest": "NODE_ENV=test node tests/db.test.js | tap-spec",
"logictest": "NODE_ENV_test node tests/logic.test.js | tap-spec",
"nyc": "NODE_ENV=test nyc tape tests/server.test.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac18/week6-coda-squall.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac18/week6-coda-squall/issues"
},
"homepage": "https://github.com/fac18/week6-coda-squall#readme",
"devDependencies": {
"codecov": "^3.6.5",
"dotenv": "^8.2.0",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.13.2"
},
"dependencies": {
"env2": "^2.2.2",
"pg": "^7.18.2"
}
}