-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
33 lines (33 loc) · 1002 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": "5.1.2",
"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 <[email protected]> (http://henrian.com)",
"license": "MIT",
"devDependencies": {
"@types/js-yaml": "4.0.0",
"@types/node": "^14.14.33",
"ava": "^3.15.0",
"coveralls": "^3.1.0",
"js-yaml": "4.0.0",
"nyc": "^15.1.0",
"rollup": "^2.41.1",
"typescript": "^4.2.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"
}
}