-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.82 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
{
"name": "ssb-box2",
"description": "'Envelope' SSB encryption format, for ssb-db2",
"version": "7.5.0",
"homepage": "https://github.com/ssbc/ssb-box2",
"repository": {
"type": "git",
"url": "[email protected]:ssbc/ssb-box2.git"
},
"main": "index.js",
"files": [
"*.js",
"package.json.license",
"LICENSES/*"
],
"dependencies": {
"envelope-js": "^1.3.2",
"pull-defer": "^0.2.3",
"pull-stream": "^3.6.14",
"ssb-bfe": "^3.7.0",
"ssb-keyring": "^7.0.0",
"ssb-private-group-keys": "^1.1.1",
"ssb-ref": "^2.16.0",
"ssb-uri2": "^2.4.1"
},
"devDependencies": {
"c8": "^7.11.0",
"eslint": "^8.32.0",
"fast-deep-equal": "3.1.3",
"husky": "^4.3.0",
"mkdirp": "^1.0.4",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"private-group-spec": "^8.1.0",
"pull-cat": "1.1.11",
"rimraf": "^3.0.2",
"secret-stack": "6.3.2",
"ssb-backlinks": "^2.1.1",
"ssb-bendy-butt": "1.0.2",
"ssb-buttwoo": "^0.3.0",
"ssb-caps": "1.1.0",
"ssb-classic": "^1.0.3",
"ssb-db": "^20.4.0",
"ssb-db2": "^6.2.0",
"ssb-ebt": "9.1.2",
"ssb-encryption-format": "^2.2.0",
"ssb-keys": "^8.4.0",
"ssb-meta-feeds": "~0.38.0",
"ssb-query": "^2.4.5",
"ssb-tribes": "^2.7.4",
"tap-arc": "^0.3.4",
"tape": "^5.2.2"
},
"scripts": {
"format-code": "prettier --write \"*.js\" \"test/*.js\"",
"format-code-staged": "pretty-quick --staged --pattern \"*.js\" --pattern \"(test)/*.js\"",
"test": "tape test/*.js | tap-arc --bail",
"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"
}