-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "joi-validate-patch",
"version": "0.0.4",
"description": "Validator for json patch contents according to joi document schemas",
"main": "index.js",
"scripts": {
"test": "mocha --recursive",
"coverage": "istanbul cover --report html _mocha",
"travis": "istanbul cover --report lcovonly _mocha",
"posttravis": "istanbul check-coverage --statements $npm_package_config_min_coverage --branches $npm_package_config_min_coverage --lines $npm_package_config_min_coverage"
},
"config": {
"min_coverage": 90
},
"repository": {
"type": "git",
"url": "git+https://github.com/evan-king/joi-validate-patch.git"
},
"keywords": [
"joi",
"json",
"patch",
"validation"
],
"author": "Evan King",
"license": "MIT",
"bugs": {
"url": "https://github.com/evan-king/joi-validate-patch/issues"
},
"homepage": "https://github.com/evan-king/joi-validate-patch#readme",
"devDependencies": {
"chai": "^3.2.0",
"istanbul": "^0.4.3",
"mocha": "^1.21.4"
},
"dependencies": {
"fast-json-patch": "^3.1.1",
"joi": "^9.2.0"
}
}