-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "majr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test-express": "node ./tests/express-test | tap-spec",
"test-database": "node ./tests/database.test | tap-spec",
"start:watch": "nodemon ./src/index.js",
"coverage": "istanbul cover ./tests/database.test.js && istanbul cover ./tests/express-test.js",
"test": "node ./tests/express-test.js | tap-spec",
},
"repository": {
"type": "git",
"url": "git+https://github.com/FAC-11/MAJR.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FAC-11/MAJR/issues"
},
"homepage": "https://github.com/FAC-11/MAJR#readme",
"dependencies": {
"body-parser": "^1.17.2",
"env2": "^2.2.0",
"express": "^4.15.4",
"express-handlebars": "^3.0.0",
"pg": "^7.1.2",
"serve-favicon": "^2.4.3"
},
"devDependencies": {
"eslint": "^4.4.1",
"istanbul": "^0.4.5",
"nodemon": "^1.11.0",
"shot": "^3.4.2",
"supertest": "^3.0.0",
"tap-diff": "^0.1.1",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
}
}