-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.56 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
93
94
{
"name": "ssb-tribes2",
"version": "1.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": ">=16"
},
"main": "index.js",
"files": [
"package.json.license",
"LICENSES/*",
"lib/**/*.js",
"*.js"
],
"dependencies": {
"@tangle/overwrite-fields": "^2.0.3",
"@tangle/reduce": "^5.0.5",
"@tangle/strategy": "^4.1.2",
"base64-url": "^2.3.3",
"bipf": "^1.9.0",
"butt64": "^2.0.1",
"clarify-error": "^1.0.0",
"debug": "^4.3.4",
"envelope-js": "^1.3.2",
"envelope-spec": "^1.1.1",
"is-canonical-base64": "^1.1.1",
"jitdb": "^7.0.7",
"lodash.chunk": "^4.2.0",
"lodash.set": "^4.3.2",
"private-group-spec": "^8.0.0",
"pull-abortable": "^4.1.1",
"pull-defer": "^0.2.3",
"pull-flat-merge": "^2.0.3",
"pull-many": "^1.0.9",
"pull-paramap": "^1.2.2",
"pull-stream": "^3.7.0",
"set.prototype.difference": "^1.1.0",
"set.prototype.intersection": "^1.1.0",
"set.prototype.issubsetof": "^1.1.0",
"ssb-bfe": "^3.7.0",
"ssb-box2": "^7.1.0",
"ssb-db2": "^7.1.1",
"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.14.0",
"eslint": "^8.50.0",
"husky": "~4.3.8",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"secret-stack": "^6.4.2",
"ssb-bendy-butt": "^1.0.2",
"ssb-classic": "^1.1.0",
"ssb-ebt": "^9.1.2",
"ssb-keys": "^8.5.0",
"tap-arc": "^1.0.1",
"tape": "^5.7.0"
},
"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 && npm run lint",
"lint": "eslint .",
"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"
}
}
}