-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "easier-abstract-leveldown",
"version": "1.2.0",
"description": "An easier abstract leveldown",
"author": "Daniel J. B. Clarke <u8sand@gmail.com>",
"license": "MIT",
"publishConfig": {
"public": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/u8sand/easier-abstract-leveldown.git"
},
"bugs": {
"url": "https://github.com/u8sand/easier-abstract-leveldown/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"compile": "tsc",
"prepublishOnly": "npm run compile && npm test",
"test": "tape -r ts-node/register src/**/*.test.ts"
},
"dependencies": {
"@types/uuid": "^3.4.4",
"abstract-leveldown": "^6.0.0",
"levelup": "^4.0.0",
"ltgt": "^2.2.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/abstract-leveldown": "^5.0.1",
"@types/levelup": "^3.1.0",
"@types/memdown": "^3.0.0",
"@types/node": "^10.12.18",
"@types/tape": "^4.2.33",
"memdown": "^3.0.0",
"tape": "^4.9.1",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
}
}