forked from tlivings/enjoi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1014 Bytes
/
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
{
"name": "enjoi",
"version": "2.0.0",
"description": "Converts json-schema to Joi schema for validation.",
"main": "lib/enjoi.js",
"scripts": {
"test": "tape test/*.js",
"cover": "istanbul cover tape -- test/*.js",
"lint": "jshint -c .jshintrc lib/*.js",
"bench": "node test/bench/run.js"
},
"repository": {
"type": "git",
"url": "git://github.com/tlivings/enjoi.git"
},
"engines": {
"node": "4.x"
},
"keywords": [
"joi",
"json-schema",
"json",
"schema",
"validation",
"hapi",
"hapijs"
],
"author": "Trevor Livingston",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/tlivings/enjoi/issues"
},
"homepage": "https://github.com/tlivings/enjoi",
"dependencies": {
"core-util-is": "^1.0.1"
},
"peerDependencies": {
"joi": "^17.2.1"
},
"optionalDependencies": {
"hammertime": "^0.1.4"
},
"devDependencies": {
"istanbul": "^0.3.2",
"jshint": "^2.5.5",
"tape": "^2.14.0"
}
}