-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
60 lines (60 loc) · 1.34 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "ajv-merge-patch",
"version": "5.0.1",
"description": "$merge and $patch keywords for Ajv JSON-Schema validator to extend schemas",
"main": "index.js",
"scripts": {
"eslint": "eslint index.js keywords spec",
"test": "npm run eslint && npm run test-cov",
"test-spec": "mocha spec/*.spec.js -R spec",
"test-cov": "nyc npm run test-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajv-validator/ajv-merge-patch.git"
},
"keywords": [
"JSON",
"schema",
"validator",
"validation",
"jsonschema",
"json-schema",
"json-schema-validator",
"json-schema-validation",
"$merge",
"$patch",
"keyword"
],
"author": "Evgeny Poberezkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/ajv-validator/ajv-merge-patch/issues"
},
"homepage": "https://github.com/ajv-validator/ajv-merge-patch#readme",
"dependencies": {
"fast-json-patch": "^2.0.6",
"json-merge-patch": "^1.0.2"
},
"devDependencies": {
"ajv": "^8.2.0",
"coveralls": "^3.1.1",
"eslint": "^7.8.1",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
"pre-commit": "^1.1.3"
},
"peerDependencies": {
"ajv": ">=8.0.0"
},
"nyc": {
"exclude": [
"**/spec/**",
"node_modules"
],
"reporter": [
"lcov",
"text-summary"
]
}
}