-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 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
{
"name": "hapi-etagger",
"version": "1.0.1",
"description": "Hapi plug-in for etags and HTTP 304 support",
"main": "src/index.js",
"author": "Frank Thelen",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/frankthelen/hapi-etagger"
},
"keywords": [
"hapi",
"plug-in",
"etag",
"etags",
"http 304",
"performance"
],
"scripts": {
"lint": "eslint . --ignore-path ./.eslintignore",
"test": "NODE_ENV=test nyc --reporter=lcov --reporter=text-summary mocha --exit --recursive test",
"coveralls": "nyc report --reporter=lcovonly && cat ./coverage/lcov.info | coveralls",
"preversion": "npm run lint && npm test"
},
"engines": {
"node": ">=12.x.x"
},
"peerDependencies": {
"@hapi/hapi": ">=19.x.x"
},
"devDependencies": {
"@hapi/boom": "^9.1.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-should-promised": "^2.0.0",
"hapi19": "npm:@hapi/hapi@^19.2.0",
"hapi20": "npm:@hapi/hapi@^20.0.3",
"joi": "^17.1.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"sinon": "^9.2.2",
"sinon-chai": "^3.5.0"
},
"dependencies": {
"etag": "^1.8.1",
"fast-safe-stringify": "^2.0.7"
}
}