-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
51 lines (51 loc) · 967 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
49
50
51
{
"name": "joi-json",
"description": "Builds Joi schemas from JSON objects",
"version": "4.0.0",
"main": "lib/index.js",
"keywords": [
"validation",
"joi",
"json",
"schema",
"validator"
],
"scripts": {
"test": "nyc mocha 'lib/**/__tests__/*' --recursive"
},
"nyc": {
"check-coverage": true,
"include": [
"lib/**/*.js"
],
"reporter": [
"lcov",
"text"
]
},
"repository": {
"type": "git",
"url": "https://github.com/vandium-io/joi-json.git"
},
"author": "Vandium Software, Inc.",
"license": "BSD-3-Clause",
"files": [
"/lib"
],
"dependencies": {
"vandium-utils": "^2.0.0"
},
"peerDependencies": {
"@hapi/joi": "*"
},
"devDependencies": {
"chai": "^4.1.2",
"nyc": "^14.1.1",
"freshy": "^1.0.2",
"@hapi/joi": "^16.1.8",
"mocha": "^6.2.2",
"proxyquire": "^2.1.3",
"require-blocker": "^1.0.0",
"sinon": "^7.5.0"
}
}