-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 2.11 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
{
"name": "ssb-tribes",
"version": "4.0.1",
"description": "a scuttlebutt (secret-stack) plugin which adds envelope encryption capabilities",
"main": "index.js",
"scripts": {
"test": "npm run test:js && npm run test:only && npm run lint",
"test:js": "NODE_ENV=test tape 'test/**/*.test.js' | tap-arc",
"test:only": "if grep -r --exclude-dir=node_modules --exclude-dir=.git --color 'test\\.only' ; then exit 1; fi",
"lint": "standard --fix",
"test:windows": "cross-env NODE_ENV=test tape test/**/*.test.js",
"generate": "rm test/generate/*/* && node test/generate/index.js"
},
"homepage": "https://github.com/ssbc/ssb-tribes#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ssbc/ssb-tribes.git"
},
"dependencies": {
"@tangle/linear-append": "^2.0.1",
"@tangle/overwrite": "^3.0.1",
"@tangle/reduce": "^5.0.5",
"@tangle/strategy": "^4.1.2",
"envelope-js": "^1.3.2",
"envelope-spec": "^1.1.1",
"is-my-json-valid": "^2.20.6",
"is-my-ssb-valid": "^1.2.2",
"lodash.set": "^4.3.2",
"private-group-spec": "^8.1.0",
"pull-level": "^2.0.4",
"pull-many": "^1.0.9",
"pull-paramap": "^1.2.2",
"pull-stream": "^3.7.0",
"sodium-native": "^3.4.1",
"ssb-bfe": "^3.7.0",
"ssb-crut": "^6.1.1",
"ssb-keys": "^8.5.0",
"ssb-private-group-keys": "^0.4.1",
"ssb-ref": "^2.16.0",
"ssb-schema-definitions": "^3.2.1"
},
"devDependencies": {
"cross-env": "^7.0.3",
"is-canonical-base64": "^1.1.1",
"scuttle-testbot": "^2.2.0",
"scuttle-testbot-1-11-0": "npm:[email protected]",
"ssb-backlinks-2-1-1": "npm:[email protected]",
"ssb-box2": "^7.5.0",
"ssb-db2": "^8.1.0",
"ssb-query-2-4-5": "npm:[email protected]",
"ssb-replicate": "^1.3.5",
"ssb-tribes-3-1-3": "npm:[email protected]",
"standard": "^17.1.0",
"tap-arc": "^1.2.2",
"tape": "^5.7.5"
},
"keywords": [
"scuttlebutt",
"encyption",
"envelope",
"private-groups"
],
"author": "mixmix",
"license": "LGPL-3.0-only",
"bugs": {
"url": "https://github.com/ssbc/ssb-tribes/issues"
}
}