-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 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
87
88
89
90
91
{
"name": "ssb-tribes2",
"version": "0.4.0",
"description": "SSB private groups with ssb-db2",
"repository": {
"type": "git",
"url": "git+https://github.com/ssbc/ssb-tribes2.git"
},
"bugs": {
"url": "https://github.com/ssbc/ssb-tribes2/issues"
},
"homepage": "https://github.com/ssbc/ssb-tribes2#readme",
"author": "Andre Staltz <[email protected]>",
"contributors": [
"Jacob Karlsson <[email protected]>"
],
"license": "LGPL-3.0-only",
"keywords": [
"ssb"
],
"engines": {
"node": ">=12"
},
"main": "index.js",
"files": [
"package.json.license",
"LICENSES/*",
"lib/*.js",
"*.js"
],
"dependencies": {
"@tangle/overwrite-fields": "^2.0.3",
"@tangle/reduce": "^5.0.4",
"@tangle/strategy": "^4.1.2",
"base64-url": "^2.3.3",
"bipf": "^1.9.0",
"butt64": "^2.0.1",
"clarify-error": "^1.0.0",
"envelope-js": "^1.3.2",
"envelope-spec": "^1.1.1",
"fast-deep-equal": "^3.1.3",
"is-canonical-base64": "^1.1.1",
"jitdb": "^7.0.7",
"lodash.chunk": "^4.2.0",
"lodash.set": "^4.3.2",
"private-group-spec": "^6.0.0",
"pull-defer": "^0.2.3",
"pull-paramap": "^1.2.2",
"pull-stream": "^3.7.0",
"set.prototype.difference": "^1.0.2",
"ssb-bfe": "^3.7.0",
"ssb-box2": "ssbc/ssb-box2#exclude-keep-readkeys",
"ssb-crut": "^4.6.2",
"ssb-db2": "^6.3.3",
"ssb-meta-feeds": "^0.39.0",
"ssb-private-group-keys": "^1.1.2",
"ssb-ref": "^2.16.0",
"ssb-uri2": "^2.4.1"
},
"devDependencies": {
"c8": "^7.13.0",
"eslint": "^8.37.0",
"husky": "~4.3.8",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"pull-many": "^1.0.9",
"rimraf": "^3.0.2",
"secret-stack": "^6.4.1",
"ssb-bendy-butt": "^1.0.2",
"ssb-caps": "^1.1.0",
"ssb-classic": "^1.1.0",
"ssb-ebt": "^9.1.2",
"ssb-keys": "^8.5.0",
"tap-arc": "^0.3.5",
"tape": "^5.6.3"
},
"scripts": {
"test:raw": "tape 'test/**/*.test.js'",
"test:only": "if grep -r --exclude-dir=node_modules --exclude-dir=.git --color 'test\\.only' ; then exit 1; fi",
"test:bail": "npm run test:raw | tap-arc --bail",
"test": "npm run test:raw | tap-arc && npm run test:only",
"format-code": "prettier --write \"**/*.js\"",
"format-code-staged": "pretty-quick --staged --pattern \"**/*.js\"",
"coverage": "c8 --reporter=lcov npm run test"
},
"husky": {
"hooks": {
"pre-commit": "npm run format-code-staged"
}
}
}