-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
69 lines (69 loc) · 1.32 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
{
"name": "enjoi",
"version": "9.0.1",
"license": "Apache 2.0",
"description": "Converts json-schema to Joi schema.",
"main": "./index.js",
"scripts": {
"test": "tape test/*.js",
"cover": "nyc --reporter=lcov --lines 100 npm test && nyc report",
"lint": "eslint index.js lib/resolver.js"
},
"repository": {
"type": "git",
"url": "git://github.com/tlivings/enjoi.git"
},
"engines": {
"node": ">=8"
},
"keywords": [
"joi",
"json-schema",
"json",
"schema",
"validation",
"hapi",
"hapijs"
],
"author": "Trevor Livingston <[email protected]>",
"contributors": [
"maldimirov",
"yujunlong2000",
"morgs32",
"hpadrick",
"justinmchase",
"nevezide",
"iamjoeker",
"Nava2",
"djMax",
"jojow",
"pibi",
"normpng",
"bardzusny",
"vh",
"nfstein",
"dimichgh",
"yosheeck",
"joescho",
"rmothilal",
"sprootshift",
"nlundquist"
],
"bugs": {
"url": "https://github.com/tlivings/enjoi/issues"
},
"homepage": "https://github.com/tlivings/enjoi",
"dependencies": {
"@hapi/bourne": "^2.0.0",
"@hapi/hoek": "^9.0.3"
},
"peerDependencies": {
"joi": "^17.1.0"
},
"devDependencies": {
"joi": "^17.1.0",
"eslint": "^6.8.0",
"nyc": "^15.0.0",
"tape": "^5.0.0"
}
}