-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.92 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "cbor-db",
"version": "1.0.4",
"description": "An embedded database for typescript and nodejs. Built as a tiny wrapper around level using borc for encoding.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"lint:fix": "eslint --fix src/**",
"docs": "rm -rf ./docs; typedoc --out ./docs",
"test": "jest"
},
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/g5becks/cbor-db.git"
},
"keywords": [
"db",
"cbor",
"typescript",
"level",
"database",
"embedded",
"embedded database"
],
"author": "Gary Becks",
"license": "MIT",
"bugs": {
"url": "https://github.com/g5becks/cbor-db/issues"
},
"homepage": "https://github.com/g5becks/cbor-db#README",
"dependencies": {
"borc": "^2.1.2",
"level": "^6.0.1",
"level-mem": "^5.0.1",
"levelup": "^4.4.0",
"readable-stream": "^3.6.0",
"split2": "^3.2.2",
"subleveldown": "^5.0.1"
},
"devDependencies": {
"@types/bignumber.js": "^5.0.0",
"@types/encoding-down": "^5.0.0",
"@types/jest": "^26.0.14",
"@types/levelup": "^4.3.0",
"@types/node": "^14.11.2",
"@types/readable-stream": "^2.3.9",
"@types/split2": "^2.1.6",
"@types/subleveldown": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"typedoc": "^0.19.2",
"typescript": "^4.0.3"
}
}