-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
86 lines (86 loc) · 2.46 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
{
"name": "jitdb",
"description": "A database on top of a flumelog with automatic index generation and maintenance",
"version": "7.0.7",
"homepage": "https://github.com/ssb-ngi-pointer/jitdb",
"repository": {
"type": "git",
"url": "git://github.com/ssb-ngi-pointer/jitdb.git"
},
"files": [
"*.js",
"package.json.license",
"LICENSES/*",
"!example.js"
],
"dependencies": {
"atomic-file-rw": "^0.3.0",
"binary-search-bounds": "^2.0.4",
"bipf": "^1.6.2",
"crc": "3.6.0",
"debug": "^4.2.0",
"fastpriorityqueue": "^0.7.1",
"idb-kv-store": "^4.5.0",
"jsesc": "^3.0.2",
"mkdirp": "^1.0.4",
"multicb": "1.2.2",
"mutexify": "^1.4.0",
"obz": "^1.1.0",
"promisify-4loc": "1.0.0",
"pull-async": "~1.0.0",
"pull-awaitable": "^1.0.0",
"pull-cat": "~1.1.11",
"pull-stream": "^3.6.14",
"push-stream": "^11.2.0",
"push-stream-to-pull-stream": "^1.0.3",
"rimraf": "^3.0.2",
"sanitize-filename": "^1.6.3",
"traverse": "^0.6.6",
"typedarray-to-buffer": "^4.0.0",
"typedfastbitset": "~0.2.1"
},
"peerDependencies": {
"async-append-only-log": "^4.3.2"
},
"devDependencies": {
"async-append-only-log": "^4.3.2",
"expose-gc": "^1.0.0",
"flumecodec": "0.0.1",
"flumelog-offset": "3.4.4",
"hash-wasm": "^4.6.0",
"husky": "^4.3.8",
"nodemark": "^0.3.0",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"pretty-bytes": "^5.6.0",
"pretty-quick": "^3.1.0",
"pull-pushable": "^2.2.0",
"ssb-fixtures": "2.2.0",
"ssb-keys": "^8.1.0",
"ssb-ref": "^2.14.3",
"ssb-validate": "^4.1.1",
"tap-arc": "^0.3.4",
"tap-bail": "^1.0.0",
"tape": "^5.2.2"
},
"scripts": {
"test": "tape test/*.js | tap-arc --bail",
"coverage": "nyc --reporter=lcov npm run test",
"format-code": "prettier --write \"*.js\" \"test/*.js\"",
"format-code-staged": "pretty-quick --staged --pattern \"*.js\" --pattern \"test/*.js\"",
"benchmark": "node benchmark/index.js | tap-arc",
"benchmark-no-create": "node benchmark/index.js noCreate | tap-arc",
"get-benchmark-matrix": "GET_BENCHMARK_MATRIX=1 node benchmark/index.js",
"benchmark-only-create": "FIXTURES_ONLY=1 node benchmark/index.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run format-code-staged"
}
},
"author": "Anders Rune Jensen <[email protected]>",
"contributors": [
"Andre Staltz <[email protected]>"
],
"license": "LGPL-3.0"
}