forked from lightsofapollo/joi-to-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 840 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
{
"name": "@plan3-relate/joi-to-json-schema",
"version": "4.0.0",
"description": "Joi -> JSON Schema Converter",
"main": "src/index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/plan3/joi-to-json-schema.git"
},
"keywords": [
"joi",
"json-schema",
"json",
"schema"
],
"authors": [
"James Lal [:lightsofapollo]",
"Rob Raisch [:raisch]"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/plan3/joi-to-json-schema/issues"
},
"homepage": "https://github.com/plan3/joi-to-json-schema",
"peerDependencies": {
"joi": "^10.6.0"
},
"devDependencies": {
"joi": "10.6.0",
"json-schema": "^0.2.2",
"lodash": "^3.10.1",
"mocha": "^2.5.3"
},
"publishConfig": {
"access": "public"
}
}