forked from tlivings/enjoi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.17 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
{
"name": "enjoi",
"version": "5.0.2",
"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": ">=6"
},
"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"
],
"bugs": {
"url": "https://github.com/tlivings/enjoi/issues"
},
"homepage": "https://github.com/tlivings/enjoi",
"dependencies": {
"hoek": "^6.0.0"
},
"peerDependencies": {
"joi": "^14.0.0"
},
"devDependencies": {
"joi": "^14.0.0",
"eslint": "^5.0.0",
"nyc": "^13.0.0",
"tape": "^4.9.0"
}
}