forked from alexb-uk/halacious
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.14 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@modernpoacher/halacious",
"version": "7.0.181",
"description": "A HAL processor for Hapi",
"keywords": [
"HAL",
"Hapi",
"hypermedia",
"HATEOAS"
],
"main": "./src/index.mjs",
"type": "module",
"types": "./src/index.d.mts",
"author": {
"name": "Jonathan Perry for Modern Poacher Limited",
"email": "modernpoacher@modernpoacher.com",
"url": "https://modernpoacher.com"
},
"contributors": [
"Brad Leupen"
],
"license": "ISC",
"engines": {
"node": ">=18.12.0"
},
"repository": {
"type": "git",
"url": "git://github.com/modernpoacher/halacious.git"
},
"homepage": "https://github.com/modernpoacher/halacious",
"bugs": {
"url": "https://github.com/modernpoacher/halacious/issues"
},
"scripts": {
"lint": "eslint . --ext .mjs,.cjs,.mts,.cts",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky",
"test": "cross-env NODE_ENV=test mocha test"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/hoek": "^11.0.7",
"async": "^3.2.6",
"debug": "^4.4.0",
"joi": "^17.13.3",
"lodash": "^4.17.21",
"marked": "^15.0.7",
"negotiator": "^1.0.0",
"pug": "^3.0.3",
"urijs": "^1.19.11",
"url-template": "^3.1.1"
},
"devDependencies": {
"@babel/core": "^7.26.8",
"@babel/eslint-parser": "^7.26.8",
"@babel/plugin-syntax-import-assertions": "^7.26.0",
"@babel/preset-env": "^7.26.8",
"@hapi/hapi": "^21.3.12",
"@hapi/vision": "^7.0.3",
"@sequencemedia/sinon-chai": "^0.0.114",
"@types/negotiator": "^0.6.3",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"chai": "^5.1.2",
"cross-env": "^7.0.3",
"eslint": "8.57.1",
"eslint-config-love": "47.0.0",
"eslint-config-standard": "^17.1.0",
"husky": "^9.1.7",
"mocha": "^11.1.0",
"sinon": "^19.0.2"
},
"imports": {
"#halacious": "./src/index.mjs",
"#halacious/*": "./src/*.mjs",
"#package": "./package.json",
"#where-am-i": "./where-am-i.mjs"
},
"exports": {
".": "./src/index.mjs",
"./utils": "./src/utils.mjs",
"./utils/*": "./src/utils/*.mjs"
}
}