-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.49 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.49 KB
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
{
"name": "nodejs-backend",
"version": "1.0.0",
"description": "Backend test for Jibble",
"repository": {
"type": "git",
"url": "git+https://github.com/sorioinc/nodejs-backend.git"
},
"scripts": {
"start": "node server.js",
"test": "jest --coverage",
"precommit": "lint-staged"
},
"keywords": [
"backend",
"test",
"jibble"
],
"author": "Oscar Soriano",
"bugs": {
"url": "https://github.com/sorioinc/nodejs-backend/issues"
},
"devDependencies": {
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"gulp": "^3.9.1",
"gulp-eslint": "^4.0.0",
"gulp-jest": "^2.0.0",
"gulp-nodemon": "^2.2.1",
"gulp-prettier-eslint": "^1.1.0",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"lint-staged": "^4.0.2",
"prettier": "^1.7.0",
"prettier-eslint": "^6.4.2",
"prettier-eslint-cli": "^4.1.1",
"run-sequence": "^1.2.2"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 85,
"functions": 85,
"lines": 85,
"statements": 85
}
}
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"eslint",
"git add"
]
},
"homepage": "https://github.com/sorioinc/nodejs-backend#readme",
"dependencies": {
"awilix": "^2.11.1",
"boom": "^7.1.1",
"hapi": "^16.5.2",
"hapi-async-handler": "^1.0.3",
"hapi-auth-bearer-token": "^5.1.0",
"hapi-swagger": "^7.7.1",
"inert": "^4.0.0",
"joi": "^13.0.2",
"request": "^2.83.0",
"vision": "^4.1.0"
}
}