-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.33 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
49
50
51
52
53
54
55
{
"name": "postgres-express-example",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git://github.com/Scoutski/postgres-express-example.git"
},
"scripts": {
"start": "nodemon ./src/server.js --config ./nodemon.json",
"spec": "nyc ava",
"test": "npm run pretest && npm run spec && npm run posttest",
"pretest": "./node_modules/.bin/sequelize db:migrate --env test",
"posttest": "./node_modules/.bin/sequelize db:migrate:undo:all --env test",
"coverage": "./node_modules/.bin/nyc report --reporter=html",
"lint": "./node_modules/.bin/eslint ./"
},
"author": "",
"license": "ISC",
"ava": {
"files": [
"test/*.js",
"test/*/*.js"
],
"failWithoutAssertions": false,
"tap": true
},
"nyc": {
"exclude": [
"src/models/*.js",
"test/"
],
"report-dir": "./coverage"
},
"dependencies": {
"dotenv": "^5.0.1",
"express": "^4.16.2",
"pg": "^7.4.1",
"sequelize": "^4.35.2",
"sequelize-cli": "^4.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-eslint": "^8.2.2",
"coveralls": "^3.0.0",
"eslint": "^4.18.2",
"nodemon": "^1.17.1",
"nyc": "^11.4.1",
"sinon": "^4.4.2",
"supertest": "^3.0.0",
"tap-spec": "^4.1.1",
"uuid": "^3.2.1"
}
}