-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
39 lines (39 loc) · 1.21 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
{
"name": "jsonpatcherproxy",
"version": "0.1.0-0",
"description": "Lean and mean Javascript implementation of the JSON-Patch standard (RFC 6902). Update JSON documents using delta patches.",
"main": "src/jsonpatcherproxy.js",
"typings": "index.d.ts",
"type": "module",
"scripts": {
"build": "webpack",
"build-watch": "webpack --watch",
"bench": "node --experimental-modules test/spec/proxyBenchmark.js",
"bench-compare": "node --experimental-modules test/spec/proxyBenchmark.js --compare",
"test": "node --experimental-modules jasmine-run.js",
"test-debug": "node --inspect-brk --experimental-modules jasmine-run.js",
"version": "webpack && git add -A"
},
"keywords": [
"proxy",
"jsonpatch",
"patch"
],
"author": {
"name": "Starcounter",
"url": "http://www.starcounter.com/"
},
"license": "MIT",
"devDependencies": {
"benchmark": "^2.1.4",
"chalk": "^2.4.2",
"jasmine": "^3.4.0",
"jsdom": "^15.1.1",
"webpack": "^4.32.2",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"fast-json-patch": "^3.0.0-0"
},
"//comments": "fast-json-patch is a dependency, though it is only used for type definitions and performance benchmark"
}