forked from modernpoacher/halacious
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.75 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
{
"name": "@modernpoacher/halacious",
"version": "6.2.4",
"description": "A HAL processor for Hapi",
"keywords": [
"HAL",
"Hapi",
"hypermedia",
"HATEOAS"
],
"main": "./index.js",
"types": "./types/index.d.ts",
"author": "Brad Leupen",
"contributors": [
"Jonathan Perry <[email protected]> (Modern Poacher Limited)"
],
"license": "MIT",
"engines": {
"node": ">=16.13.0"
},
"repository": {
"type": "git",
"url": "git://github.com/modernpoacher/halacious"
},
"homepage": "https://github.com/modernpoacher/halacious",
"bugs": {
"url": "https://github.com/modernpoacher/halacious/issues"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "cross-env NODE_ENV=test mocha test",
"pre-commit": "npm run lint && npm test"
},
"dependencies": {
"@hapi/boom": "9.1.0",
"@hapi/hoek": "9.0.4",
"@hapi/joi": "15.1.1",
"async": "^3.2.4",
"lodash": "^4.17.21",
"marked": "^4.1.0",
"negotiator": "^0.6.3",
"pug": "^3.0.2",
"urijs": "^1.19.11",
"url-template": "2.0.8"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/eslint-parser": "^7.19.1",
"@hapi/hapi": "18.4.1",
"@hapi/vision": "6.0.1",
"babel-loader": "^8.2.5",
"chai": "^4.3.6",
"chai-string": "^1.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.23.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"module-alias": "^2.2.2",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0"
},
"_moduleAliases": {
"halacious": "."
}
}