forked from Starcounter-Jack/JSON-Patch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.67 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
52
53
54
{
"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": "joachimwester@me.com",
"url": "http://www.starcounter.com/"
},
"license": "MIT",
"main": "src/json-patch-duplex.js",
"typings": "src/json-patch-duplex.d.ts",
"engines": {
"node": ">= 0.4.0"
},
"devDependencies": {
"benchmark": "^2.1.2",
"chalk": "^1.1.3",
"grunt": "^0.4.5",
"grunt-bump": "^0.3.0",
"grunt-contrib-uglify": "~0.5.0",
"jasmine": "^2.5.1",
"jsdom": "^9.5.0",
"jsonfile": "^2.3.1",
"typescript": "~2.0.0",
"underscore": "^1.8.3"
},
"scripts": {
"tsc": "tsc",
"tsc-watch": "tsc -w",
"uglify": "grunt uglify",
"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",
"bench-duplex-only": "node test/spec/duplexBenchmark.js"
}
}