-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 743 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 743 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
{
"name": "changeset",
"version": "0.2.6",
"description": "Library to diff JSON objects into atomic put and delete operations, and apply change sets to objects. Useful with Levelup/LevelDB object synchronization.",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/eugeneware/changeset"
},
"keywords": [
"leveldb",
"levelup",
"json",
"diff",
"change",
"changes",
"changeset"
],
"author": "Eugene Ware <eugene@noblesamurai.com>",
"license": "BSD-3-Clause",
"devDependencies": {
"chai": "3.5.0",
"mocha": "^8.3.0"
},
"dependencies": {
"udc": "^1.0.0",
"underscore": "^1.8.3"
}
}