forked from eugeneware/changeset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 934 Bytes
/
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
{
"name": "changeset",
"version": "0.2.4",
"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": {
"build": "tsc",
"test": "node_modules/.bin/ts-mocha -p tsconfig.json test/index.spec.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/eugeneware/changeset"
},
"keywords": [
"leveldb",
"levelup",
"json",
"diff",
"change",
"changes",
"changeset"
],
"author": "Eugene Ware <[email protected]>",
"license": "BSD-3-Clause",
"devDependencies": {
"@types/mocha": "^10.0.0",
"@types/node": "^18.7.23",
"@types/underscore": "^1.11.4",
"chai": "3.5.0",
"mocha": "^5.2.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.8.4"
},
"dependencies": {
"underscore": "^1.8.3"
}
}