-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
47
48
{
"name": "week6-coda-squall",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "node src/database/run_build.js",
"test": "NODE_ENV=test nyc --reporter=lcov tape tests/*test.js | tap-spec",
"start": "node src/server.js",
"coverage": "NODE_ENV=test codecov",
"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.1",
"dotenv": "^8.2.0",
"nodemon": "^2.0.1",
"nyc": "^14.1.1",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie": "^0.4.0",
"env2": "^2.2.2",
"jsonwebtoken": "^8.5.1",
"pg": "^7.14.0"
}
}