-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.25 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
{
"name": "@matthewglover/hapi-wrapper",
"version": "0.2.5",
"description": "Promise-based wrapper around Hapi",
"main": "index.js",
"scripts": {
"coverage": "nyc check-coverage --lines 100, --functions 100, --branches 100",
"lint": "eslint './+(lib|test)/**/*.js'",
"precommit": "npm run lint && nyc --reporter=lcov npm test && npm run coverage",
"test": "NODE_ENV=test ava --verbose",
"test-coverage-report": "nyc npm run test report --reporter=lcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthewglover/hapi-wrapper.git"
},
"author": "Matt Glover (https://github.com/matthewglover)",
"license": "MIT",
"bugs": {
"url": "https://github.com/matthewglover/hapi-wrapper/issues"
},
"homepage": "https://github.com/matthewglover/hapi-wrapper#readme",
"dependencies": {
"hapi": "^15.0.2",
"inert": "^4.0.2",
"ramda": "^0.22.1"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-eslint": "^6.1.2",
"coveralls": "^2.11.12",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"husky": "^0.11.7",
"nyc": "^8.1.0",
"sinon": "^1.17.5"
}
}