This repository has been archived by the owner on May 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.54 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
{
"name": "ssb-db2",
"description": "A new database for SSB",
"version": "4.1.1",
"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"
],
"dependencies": {
"async-append-only-log": "^4.2.2",
"atomic-file-rw": "^0.2.1",
"binary-search-bounds": "^2.0.4",
"bipf": "^1.5.4",
"clarify-error": "^1.0.0",
"debug": "^4.3.1",
"fastintcompression": "0.0.4",
"flumecodec": "0.0.1",
"flumelog-offset": "3.4.4",
"hoox": "0.0.1",
"jitdb": "^6.6.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-cont": "^0.1.1",
"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-bendy-butt": "~0.12.2",
"ssb-keys": "^8.1.0",
"ssb-ref": "^2.14.3",
"ssb-uri2": "^1.5.2",
"ssb-validate": "^4.1.3",
"ssb-validate2": "~0.1.1",
"ssb-validate2-rsjs-node": "^1.0.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.0",
"ssb-caps": "1.1.0",
"ssb-db": "19.3.1",
"ssb-db2-box2": "^0.6.0",
"ssb-fixtures": "3.0.4",
"ssb-friends": "5.1.0",
"ssb-threads": "9.2.0",
"tap-arc": "^0.1.2",
"tape": "^5.2.2",
"trammel": "~4.0.0"
},
"scripts": {
"test": "tape test/*.js | tap-arc",
"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"
}