-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
93 lines (93 loc) · 2.51 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "ssb-db2",
"description": "A new database for SSB",
"version": "8.1.0",
"homepage": "https://github.com/ssb-ngi-pointer/ssb-db2",
"repository": {
"type": "git",
"url": "[email protected]:ssb-ngi-pointer/ssb-db2.git"
},
"files": [
"package.json.license",
"LICENSES/*",
"*.js",
"compat/*.js",
"indexes/*.js",
"operators/*.js"
],
"engines": {
"node": ">=16"
},
"dependencies": {
"async-append-only-log": "^4.3.7",
"atomic-file-rw": "^0.3.0",
"binary-search-bounds": "^2.0.4",
"bipf": "^1.9.0",
"debug": "^4.3.1",
"fastintcompression": "0.0.4",
"flumecodec": "0.0.1",
"flumelog-offset": "3.4.4",
"hoox": "0.0.1",
"jitdb": "^7.0.0",
"level": "^6.0.1",
"level-codec": "^9.0.2",
"lodash.debounce": "^4.0.8",
"mkdirp": "^1.0.4",
"multicb": "1.2.2",
"mutexify": "^1.3.1",
"obz": "^1.1.0",
"p-defer": "^3.0.0",
"pull-cat": "^1.1.11",
"pull-drain-gently": "^1.1.0",
"pull-level": "^2.0.4",
"pull-notify": "^0.1.2",
"pull-paramap": "^1.2.2",
"pull-stream": "^3.6.14",
"push-stream": "^11.0.0",
"rimraf": "^3.0.2",
"ssb-about-self": "^1.0.1",
"ssb-box": "^1.0.0",
"ssb-box2": "^3.0.0",
"ssb-classic": "^1.1.0",
"ssb-keys": "^8.4.0",
"ssb-ref": "^2.14.3",
"ssb-uri2": "^2.2.0",
"too-hot": "^1.0.0",
"typedarray-to-buffer": "^4.0.0"
},
"devDependencies": {
"c8": "^7.11.0",
"husky": "^4.3.0",
"monotonic-timestamp": "0.0.9",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"secret-stack": "^6.4.1",
"ssb-bendy-butt": "^1.0.0",
"ssb-bfe": "^3.3.0",
"ssb-buttwoo": "^0.3.1",
"ssb-caps": "1.1.0",
"ssb-db": "19.3.1",
"ssb-fixtures": "4.0.1",
"tap-arc": "^0.3.4",
"tape": "^5.2.2",
"trammel": "~4.0.0"
},
"scripts": {
"test": "tape test/*.js | tap-arc --bail",
"format-code": "prettier --write \"*.js\" \"(test|compat|indexes|operators)/*.js\"",
"format-code-staged": "pretty-quick --staged --pattern \"*.js\" --pattern \"(test|compat|indexes|operators)/*.js\"",
"benchmark": "node --expose-gc benchmark/index.js | tap-arc",
"benchmark-no-create": "node --expose-gc benchmark/index.js noCreate | tap-arc",
"coverage": "c8 --reporter=lcov npm run test"
},
"husky": {
"hooks": {
"pre-commit": "npm run format-code-staged"
}
},
"author": "Anders Rune Jensen <[email protected]>",
"contributors": [
"Andre Staltz <[email protected]>"
],
"license": "LGPL-3.0-only"
}