forked from Palindrom/JSONPatcherProxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.23 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.23 KB
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.0.10",
"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",
"scripts": {
"build": "webpack",
"build-watch": "webpack --watch",
"bench": "node test/spec/proxyBenchmark.js",
"bench-compare": "node test/spec/proxyBenchmark.js --compare",
"test": "jasmine DUPLEX=proxy JASMINE_CONFIG_PATH=test/jasmine.json",
"test-debug": "node --inspect-brk node_modules/jasmine/bin/jasmine.js DUPLEX=proxy JASMINE_CONFIG_PATH=test/jasmine.json",
"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",
"lodash": "^4.17.11",
"webpack": "^4.32.2",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"fast-json-patch": "^2.1.0"
},
"//comments": "fast-json-patch is a dependency, though it is only used for type definitions and performance benchmark"
}