-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.16 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
{
"name": "ssb-http-auth-client",
"description": "Secret-stack plugin to implement Sign-in with SSB over HTTP",
"version": "1.1.1",
"homepage": "https://github.com/ssb-ngi-pointer/ssb-http-auth-client",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/*.js",
"lib/*.d.ts",
"LICENSES/*",
"*.license"
],
"repository": {
"type": "git",
"url": "git://github.com/ssb-ngi-pointer/ssb-http-auth-client.git"
},
"dependencies": {
"debug": "^4.3.1",
"ssb-conn": ">=2.0.0",
"ssb-keys": "^8.1.0",
"ssb-ref": "^2.14.3",
"ssb-typescript": "^2.2.0"
},
"devDependencies": {
"@types/node": "12.x",
"nyc": "^15.1.0",
"pull-stream": "^3.6.14",
"secret-stack": "6.4.1",
"ssb-caps": "^1.1.0",
"ssb-conn": "~2.1.0",
"ssb-conn-query": "~1.2.2",
"tap-spec": "^5.0.0",
"tape": "^5.5.2",
"typescript": "4.6.x"
},
"scripts": {
"compile": "tsc",
"tape": "tape test/*-cases.js | tap-spec",
"test": "npm run compile && npm run tape",
"coverage": "nyc npm run test"
},
"author": "Andre Staltz <[email protected]> (http://staltz.com)",
"license": "LGPL-3.0"
}