-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.09 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.09 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
{
"name": "@hapipal/toys",
"version": "4.0.0",
"description": "The hapi utility toy chest",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=16"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "lab -a @hapi/code -t 100 -L",
"coveralls": "lab -r lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hapipal/toys.git"
},
"keywords": [
"hapi",
"utility",
"performance",
"convenience",
"tools"
],
"author": "Devin Ivy <devin@bigroomstudios.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hapipal/toys/issues"
},
"homepage": "https://github.com/hapipal/toys#readme",
"dependencies": {
"@hapi/hoek": "^11.0.2"
},
"peerDependencies": {
"@hapi/hapi": ">=20 <22"
},
"peerDependenciesMeta": {
"@hapi/hapi": {
"optional": true
}
},
"devDependencies": {
"@hapi/boom": "^10.0.0",
"@hapi/code": "^9.0.2",
"@hapi/hapi": "^21.2.1",
"@hapi/lab": "^25.1.0",
"coveralls": "^3.0.0",
"joi": "^17.0.0"
}
}