forked from 418sec/rfc6902
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1003 Bytes
/
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
{
"name": "rfc6902",
"version": "4.0.1",
"description": "Complete implementation of RFC6902 (patch and diff)",
"keywords": [
"json",
"patch",
"diff",
"rfc6902"
],
"homepage": "https://github.com/chbrown/rfc6902",
"repository": "github:chbrown/rfc6902",
"author": "Christopher Brown <io@henrian.com> (http://henrian.com)",
"license": "MIT",
"devDependencies": {
"@types/js-yaml": "3.12.5",
"@types/node": "^14.11.2",
"ava": "^3.12.1",
"coveralls": "^3.1.0",
"js-yaml": "3.14.0",
"nyc": "^15.1.0",
"rollup": "^2.28.2",
"typescript": "^4.0.3"
},
"scripts": {
"prepare": "tsc",
"pretest": "tsc -b . test -f",
"test": "nyc ava",
"posttest": "nyc report --reporter=text-lcov | coveralls || true",
"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",
"clean": "tsc -b . test --clean"
}
}