-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.56 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "foodtrucks-api",
"version": "1.0.0",
"description": "Food Trucks API",
"engines": {
"node": ">=9"
},
"main": "index.js",
"scripts": {
"check-coverage": "nyc report --reporter=text-summary && nyc check-coverage",
"coverage": "NODE_ENV=test nyc --reporter=lcov mocha",
"dev": "nodemon index.js",
"lint": "eslint . --quiet",
"mocha": "mocha",
"start": "nodemon cluster.js",
"test": "npm run -s lint && npm run -s coverage && npm run -s check-coverage",
"watch:coverage": "nodemon --exec 'npm run -s coverage && npm run -s check-coverage' -w app -w test",
"watch:lint": "NODE_ENV=test nodemon --exec 'npm run lint' -w app -w test",
"watch:mocha": "NODE_ENV=test nodemon --exec 'npm run mocha' -w app -w test",
"watch:test": "NODE_ENV=test nodemon --exec 'npm run test' -w app -w test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrisforrette/foodtrucks-api.git"
},
"author": "Chris Forrette <chris@chrisforrette.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/chrisforrette/foodtrucks-api/issues"
},
"homepage": "https://github.com/chrisforrette/foodtrucks-api#readme",
"dependencies": {
"bluebird": "^3.5.1",
"boom": "^7.1.1",
"convict": "^4.0.2",
"csv-parse": "^2.0.0",
"dotenv": "^5.0.0",
"hapi": "^16.6.2",
"hapi-error": "^1.8.0",
"hapi-raven": "^7.0.0",
"hapi-require-https": "^3.0.0",
"joi": "^13.1.1",
"jsonapi-serializer": "^3.5.6",
"lodash": "^4.17.4",
"nodemon": "^1.14.11",
"pg": "^6.4.2",
"pg-hstore": "^2.3.2",
"sequelize": "^3.31.1",
"sequelize-cli": "^3.2.0",
"strong-cluster-control": "^2.2.3",
"winston": "^2.4.0",
"winston-raven-sentry": "^1.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.16.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"faker": "^4.1.0",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"rewire": "^2.5.2",
"sinon": "^4.2.2"
},
"nyc": {
"exclude": [
"**/*.test.js",
"app/models/migrations"
],
"statements": 50,
"branches": 40,
"functions": 50,
"lines": 50,
"watermarks": {
"statements": [
70,
80
],
"branches": [
70,
80
],
"functions": [
70,
80
],
"lines": [
70,
80
]
}
}
}