-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"name": "mock-hapi-session",
"version": "2.0.0",
"description": "Mock support for hapi yar sessions",
"main": "./index.js",
"keywords": [
"nodejs",
"hapi",
"yar",
"mock",
"test",
"session",
"cookie"
],
"author": {
"name": "Fabian Heymann",
"url": "https://github.com/faheymann"
},
"bugs": "https://github.com/faheymann/mock-hapi-session/issues",
"dependencies": {
"joi": "^17.4.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.3",
"@hapi/code": "^9.0.0",
"@hapi/eslint-plugin": "^6.0.0",
"@hapi/hapi": "^20.2.1",
"@hapi/lab": "^25.0.1",
"@hapi/yar": "^11.0.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.25.3"
},
"engines": {
"node": ">=16.0.0"
},
"homepage": "https://github.com/faheymann/mock-hapi-session#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/faheymann/mock-hapi-session.git"
},
"scripts": {
"lint": "eslint .",
"test": "lab test"
}
}