-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.32 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
{
"name": "etagger",
"version": "6.0.0",
"description": "hapi ETag helper plugin",
"keywords": [
"etag",
"hapi"
],
"homepage": "https://github.com/seangenabe/etagger#readme",
"bugs": {
"url": "https://github.com/seangenabe/etagger/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seangenabe/etagger.git"
},
"license": "MIT",
"author": "Sean Genabe <seangenabe@outlook.com>",
"main": "index.js",
"scripts": {
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"report": "nyc report --reporter=html",
"build": "tsc",
"watch": "tsc -w",
"pretest": "tsc",
"test": "nyc ava",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@hapi/joi": "^17.1.0",
"@types/hapi__hapi": "^20.0.0",
"@types/json-stable-stringify": "^1.0.32",
"json-stable-stringify": "^1.0.1"
},
"devDependencies": {
"@hapi/boom": "^9.1.0",
"@hapi/hapi": "^20.0.0",
"@types/node": "^14.10.1",
"ava": "^3.1.0",
"coveralls": "^3.0.5",
"cross-env": "^7.0.0",
"nyc": "^15.0.0",
"typescript": "^4.0.2"
},
"peerDependencies": {
"@hapi/hapi": ">=17.x"
},
"engines": {
"node": ">=12.0.0"
},
"ava": {
"files": [
"test/test.js"
]
},
"nyc": {
"sourceMap": false,
"instrument": false
}
}