-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.39 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
{
"name": "hapi-roller",
"version": "1.0.1",
"description": "Hapi plugin for rollbar",
"main": "index.js",
"engines": {
"node": "^10"
},
"repository": "https://github.com/iampeterbanjo/hapi-rollbar",
"author": "[email protected]",
"license": "MIT",
"lint-staged": {
"*.{js,jsx}": [
"eslint"
],
"*.{js,jsx,json,md}": [
"yarn lint-fix && lint-errors"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"deploy": "yarn lint && yarn test && git push && yarn publish",
"lint-errors": "prettier --config prettier.config.js --list-different",
"lint-fix": "yarn prettier --config prettier.config.js --write ./**/*.{md}",
"lint": "yarn eslint --fix-dry-run .",
"test": "lab ./__tests__/",
"test-watch": "nodemon -e js,json,html,md -x 'yarn test'"
},
"peerDependencies": {
"@hapi/hapi": "^18.3.1"
},
"devDependencies": {
"@hapi/code": "^6.0.0",
"@hapi/hapi": "^18.3.1",
"@hapi/lab": "^19.1.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.11.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"nodemon": "^1.19.1",
"prettier": "^1.16.4",
"sinon": "^7.3.2"
},
"dependencies": {
"rollbar": "^2.9.0"
}
}