-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1004 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
40
{
"name": "kamosima",
"version": "1.0.0",
"description": "An awesome dogspotting project",
"main": "src/server.js",
"directories": {
"test": "tests"
},
"scripts": {
"start": "nodemon server.js",
"test": "NODE_ENV=test nyc tape ./tests/*.js | tap-spec",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-14/KaMoSiMa.git"
},
"author": "Monika, Martin, Simon, Kate",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-14/KaMoSiMa/issues"
},
"homepage": "https://github.com/fac-14/KaMoSiMa#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie": "^0.3.1",
"env2": "^2.2.2",
"jsonwebtoken": "^8.3.0",
"mime-types": "^2.1.19",
"pg": "^7.4.3"
},
"devDependencies": {
"codecov": "^3.0.4",
"nodemon": "^1.18.3",
"nyc": "^12.0.2",
"supertest": "^3.1.0",
"tap-spec": "^5.0.0",
"tape": "^4.9.1"
}
}