UNPKG

1 kBJSONView Raw
1{
2 "name": "rfc6902",
3 "version": "5.1.1",
4 "description": "Complete implementation of RFC6902 (patch and diff)",
5 "keywords": [
6 "json",
7 "patch",
8 "diff",
9 "rfc6902"
10 ],
11 "homepage": "https://github.com/chbrown/rfc6902",
12 "repository": "github:chbrown/rfc6902",
13 "author": "Christopher Brown <io@henrian.com> (http://henrian.com)",
14 "license": "MIT",
15 "devDependencies": {
16 "@types/js-yaml": "4.0.0",
17 "@types/node": "^14.14.33",
18 "ava": "^3.15.0",
19 "coveralls": "^3.1.0",
20 "js-yaml": "4.0.0",
21 "nyc": "^15.1.0",
22 "rollup": "^2.41.1",
23 "typescript": "^4.2.3"
24 },
25 "scripts": {
26 "prepare": "tsc",
27 "pretest": "tsc -b . test -f",
28 "test": "nyc ava",
29 "posttest": "nyc report --reporter=text-lcov | coveralls || true",
30 "dist": "tsc -t ES2015 -m es2015 && rollup index.js --output.format umd --name rfc6902 --output.file dist/rfc6902.js && closure-compiler dist/rfc6902.js > dist/rfc6902.min.js",
31 "clean": "tsc -b . test --clean"
32 }
33}