-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "level-mount",
"version": "1.1.4",
"description": "Mount multiple leveldown compatible stores by key prefix onto a single store.",
"author": "Daniel J. B. Clarke <[email protected]>",
"license": "MIT",
"publishConfig": {
"public": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/u8sand/level-mount.git"
},
"bugs": {
"url": "https://github.com/u8sand/level-mount/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"compile": "tsc",
"prepublishOnly": "npm run compile && npm test",
"test": "mocha --opts .mocha.opts"
},
"dependencies": {
"abstract-leveldown": "^6.0.1",
"easier-abstract-leveldown": "^1.1.2",
"heapq": "0.0.3",
"ltgt": "^2.2.1"
},
"devDependencies": {
"@types/abstract-leveldown": "^5.0.1",
"@types/levelup": "^3.1.0",
"@types/memdown": "^3.0.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"levelup": "^3.1.1",
"memdown": "^3.0.0",
"mocha": "^5.2.0",
"subleveldown": "^3.0.1",
"tape": "^4.9.2",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
}
}