-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
47 lines (47 loc) · 1.11 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
{
"name": "joi-to-json-schema",
"version": "5.1.0",
"description": "Joi -> JSON Schema Converter",
"main": "build/index.js",
"scripts": {
"build": "babel -s --out-dir build src",
"pretest": "npm run build",
"test": "mocha",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/lightsofapollo/joi-to-json-schema.git"
},
"keywords": [
"joi",
"json-schema",
"json",
"schema"
],
"author": "James Lal [:lightsofapollo]",
"maintainers": [
"Rob Raisch [:raisch]"
],
"contributors": [
{
"name": "MooYeol Prescott Lee",
"email": "mooyoul@gmail.com",
"url": "https://github.com/mooyoul"
}
],
"license": "Apache2",
"bugs": {
"url": "https://github.com/lightsofapollo/joi-to-json-schema/issues"
},
"homepage": "https://github.com/lightsofapollo/joi-to-json-schema",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-preset-latest": "^6.24.0",
"babel-register": "^6.24.0",
"@hapi/joi": "^15.0.3",
"json-schema": "^0.2.2",
"lodash": "^4.17.11",
"mocha": "^2.5.3"
}
}