-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.11 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": "json-patch-queue",
"version": "3.0.0-rc.1",
"description": "Queue for Versioned JSON-Patch - makes sure that your JSON Patches (RFC6902) gets applied in correct order",
"main": "./src/json-patch-queue.js",
"typings": "index.d.ts",
"scripts": {
"test": "node --experimental-modules jasmine-run.js",
"test-sync": "node --experimental-modules jasmine-run.js test/spec/synchronousVersioningSpec.js",
"test-async": "node --experimental-modules jasmine-run.js test/spec/asyncVersioningSpec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Palindrom/JSON-Patch-queue.git"
},
"keywords": [
"jsonpatch",
"json-patch",
"versioned-json-patch",
"json",
"queue"
],
"author": "Tomek Wytrebowicz",
"license": "MIT",
"bugs": {
"url": "https://github.com/Palindrom/JSON-Patch-queue/issues"
},
"homepage": "https://github.com/Palindrom/JSON-Patch-queue",
"engines": {
"node": ">= 0.4.0"
},
"type": "module",
"devDependencies": {
"benchmark": "^2.1.4",
"grunt": "^1.0.4",
"grunt-bump": "^0.8.0",
"jasmine": "^3.4.0"
}
}