forked from ajv-validator/ajv-merge-patch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"name": "ajv-merge-patch",
"version": "3.0.0",
"description": "$merge and $patch keywords for Ajv JSON-Schema validator to extend schemas",
"main": "index.js",
"scripts": {
"eslint": "if-node-version '>=4' eslint index.js keywords spec",
"test": "npm run eslint && npm run test-cov",
"test-spec": "mocha spec/*.spec.js -R spec",
"test-cov": "istanbul cover -x '**/spec/**' node_modules/mocha/bin/_mocha -- spec/*.spec.js -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epoberezkin/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/epoberezkin/ajv-merge-patch/issues"
},
"homepage": "https://github.com/epoberezkin/ajv-merge-patch#readme",
"dependencies": {
"fast-json-patch": "^1.0.0",
"json-merge-patch": "^0.2.3"
},
"devDependencies": {
"ajv": "^5.0.0",
"coveralls": "^2.11.12",
"eslint": "^3.3.0",
"if-node-version": "^1.0.0",
"istanbul": "^0.4.4",
"mocha": "^3.0.2",
"pre-commit": "^1.1.3"
},
"peerDependencies": {
"ajv": ">=5.0.0"
}
}