-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.55 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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "fast-json-patch",
"version": "1.1.10",
"description": "Fast implementation of JSON-Patch (RFC-6902) with duplex (observe changes) capabilities",
"homepage": "https://github.com/Starcounter-Jack/JSON-Patch",
"keywords": [
"json",
"patch",
"http",
"rest"
],
"repository": {
"type": "git",
"url": "git://github.com/Starcounter-Jack/JSON-Patch.git"
},
"bugs": {
"url": "https://github.com/Starcounter-Jack/JSON-Patch/issues"
},
"author": {
"name": "Joachim Wester",
"email": "[email protected]",
"url": "http://www.starcounter.com/"
},
"license": "MIT",
"main": "./src/json-patch-duplex.js",
"typings": "./src/json-patch-duplex.ts",
"engines": {
"node": ">= 0.4.0"
},
"devDependencies": {
"benchmark": "2.1.4",
"chalk": "2.4.2",
"grunt": "1.0.4",
"grunt-bump": "0.8.0",
"grunt-contrib-uglify": "4.0.1",
"jasmine": "^2.5.1",
"jsdom": "15.2.0",
"jsonfile": "5.0.0",
"underscore": "1.9.1"
},
"scripts": {
"tsc": "tsc",
"tsc-watch": "tsc -w",
"test": "npm run test-core && npm run test-duplex",
"test-duplex": "jasmine DUPLEX=yes JASMINE_CONFIG_PATH=test/jasmine.json",
"test-core": "jasmine DUPLEX=no JASMINE_CONFIG_PATH=test/jasmine.json test/spec/jsonPatchTestsSpec.js test/spec/coreSpec.js test/spec/validateSpec.js",
"bench": "npm run bench-core && npm run bench-duplex",
"bench-core": "node test/spec/coreBenchmark.js",
"bench-duplex": "node test/spec/coreBenchmark.js DUPLEX=yes && node test/spec/duplexBenchmark.js"
}
}