-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 938 Bytes
/
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
{
"name": "private-group-spec",
"version": "8.1.0",
"description": "a spec for private groups in scuttlebutt, using envelope encryption",
"main": "index.js",
"scripts": {
"test": "node test.js && tape test/*.test.js | tap-arc --bail",
"generate-schema": "node generate-schema.js",
"lint": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ssbc/private-groups-spec.git"
},
"keywords": [
"scuttlebutt",
"spec",
"private",
"groups",
"encryption"
],
"author": "mixmix",
"license": "LGPL-3.0-only",
"bugs": {
"url": "https://github.com/ssbc/private-groups-spec/issues"
},
"homepage": "https://github.com/ssbc/private-groups-spec#readme",
"dependencies": {
"is-my-ssb-valid": "^1.2.0"
},
"devDependencies": {
"ssb-private-group-keys": "^1.0.0",
"standard": "^17.0.0",
"tap-arc": "^0.3.4",
"tape": "^5.5.3"
}
}