-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 684 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 684 Bytes
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
{
"name": "json-squash",
"version": "0.0.3",
"description": "Squash JSON-Patch operations patch into a mathematically equivalent smaller patch",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"test": "ava -v"
},
"repository": {
"type": "git",
"url": "https://github.com/alshakero/json-squash.git"
},
"keywords": [
"json-patch"
],
"ava": {
"files": [
"tests/test.js",
"tests/standard-tests.js"
]
},
"author": "Omar Alshaker",
"license": "MIT",
"devDependencies": {
"ava": "^0.19.1",
"fast-json-patch": "^1.1.10",
"jsonpatcherproxy": "0.0.9"
},
"dependencies": {
"clone": "^2.1.1"
}
}