forked from ajv-validator/ajv-merge-patch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 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
61
{
"name": "ajv-merge-patch",
"version": "3.0.0",
"description": "$merge and $patch keywords for Ajv JSON-Schema validator to extend schemas",
"main": "dist/bundle",
"typings": "index.d.ts",
"scripts": {
"_mocha": "_mocha \"spec/*.spec.js\"",
"build": "webpack",
"eslint": "eslint index.js keywords spec",
"prepublish": "npm run build",
"test": "npm run eslint && npm run test-spec && npm run test-cov",
"test-spec": "npm run -s _mocha -- --require @babel/register --reporter spec",
"test-cov": "nyc --require @babel/register --exclude dist/** --exclude spec/** --reporter text npm run -s _mocha",
"coverage": "nyc report --reporter text-lcov | coveralls"
},
"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": "^2.0.6",
"json-merge-patch": "^0.2.3"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.34",
"@babel/plugin-transform-runtime": "^7.0.0-beta.34",
"@babel/preset-env": "^7.0.0-beta.34",
"@babel/register": "^7.0.0-beta.34",
"ajv": "^5.5.1",
"babel-loader": "~8.0.0-beta.0",
"coveralls": "^3.0.0",
"eslint": "^4.12.1",
"mocha": "~4.0.1",
"nyc": "^11.4.0",
"pre-commit": "^1.2.2",
"webpack": "^3.10.0"
},
"peerDependencies": {
"ajv": ">=5.0.0"
}
}