-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.28 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
{
"name": "ssb-search2",
"version": "3.0.0",
"description": "Full-text search in SSB using ssb-db2",
"repository": {
"type": "git",
"url": "git+https://github.com/staltz/ssb-search2.git"
},
"types": "lib/types.d.ts",
"main": "lib/index.js",
"files": [
"lib/*.js",
"lib/*.d.ts"
],
"author": "Andre Staltz <[email protected]>",
"license": "LGPL-3.0",
"keywords": [
"ssb"
],
"engines": {
"node": ">=12"
},
"dependencies": {
"bipf": "^1.5.1",
"pull-level": "^2.0.4",
"pull-stream": "^3.6.2",
"ssb-ref": "^2.16.0",
"unicode-word-regex": "^1.0.1"
},
"peerDependencies": {
"jitdb": ">=3.3.0",
"ssb-db2": ">=2.3.0"
},
"devDependencies": {
"@types/node": "^14.14.39",
"@unicode/unicode-13.0.0": "^1.1.0",
"nyc": "^15.0.0",
"pull-stream-util": "^0.1.2",
"regenerate": "^1.4.2",
"secret-stack": "6.4.0",
"ssb-caps": "^1.1.0",
"ssb-db2": "^8.1.0",
"ssb-fixtures": "^4.0.1",
"ssb-keys": "8.1.0",
"tap-bail": "^1.0.0",
"tap-spec": "^5.0.0",
"tape": "^5.2.0",
"typescript": "~4.3.5"
},
"scripts": {
"compile": "tsc",
"tape": "tape test/index.js | tap-bail | tap-spec",
"test": "npm run compile && npm run tape",
"coverage": "nyc --reporter=lcov npm test"
}
}