-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.36 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
{
"name": "hapi-field-auth",
"version": "1.1.0",
"description": "Hapi plug-in for field-level authorization",
"main": "src/index.js",
"author": "Frank Thelen",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/funny-bytes/hapi-field-auth"
},
"keywords": [
"hapi",
"authorization",
"fields",
"field-level"
],
"scripts": {
"lint": "eslint . --ignore-path ./.eslintignore",
"test": "NODE_ENV=test nyc --reporter=lcov --reporter=text-summary mocha --exit --recursive test",
"preversion": "npm run lint && npm test"
},
"engines": {
"node": ">=22.x.x"
},
"peerDependencies": {
"@hapi/hapi": ">=17.x.x",
"joi": ">=17.x.x"
},
"devDependencies": {
"@hapi/basic": "^7.0.2",
"ansi-regex": ">=5.0.1",
"babel-eslint": "^10.0.3",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.1",
"coveralls": "^3.1.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-should-promised": "^2.0.0",
"hapi20": "npm:@hapi/hapi@^20.0.3",
"hapi21": "npm:@hapi/hapi@^21.3.12",
"joi": "^17.13.3",
"mocha": "^11.0.1",
"nyc": "^17.1.0",
"sinon": "^19.0.2",
"sinon-chai": "^4.0.0"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"mustache": "^4.2.0"
}
}