-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
68 lines (68 loc) · 1.79 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": "secret-stack",
"description": "create secure peer to peer networks using secret-handshakes",
"version": "8.1.0",
"homepage": "https://github.com/ssb-js/secret-stack",
"repository": {
"type": "git",
"url": "git://github.com/ssb-js/secret-stack.git"
},
"type": "commonjs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"exports": {
".": {
"require": "./lib/index.js"
},
"./bare": {
"require": "./lib/bare.js"
},
"./plugins/net": {
"require": "./lib/plugins/net.js"
},
"./plugins/shs": {
"require": "./lib/plugins/shs.js"
}
},
"engines": {
"node": ">=16"
},
"dependencies": {
"debug": "^4.3.0",
"hoox": "0.0.1",
"map-merge": "^1.1.0",
"multiserver": "^3.1.0",
"muxrpc": "^8.0.0",
"pull-inactivity": "~2.1.1",
"pull-rate": "^1.0.2",
"pull-stream": "^3.4.5",
"to-camel-case": "^1.0.0"
},
"devDependencies": {
"@types/node": "^12.12.2",
"@types/debug": "4.1.8",
"@types/to-camel-case": "1.0.0",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"pull-pushable": "^2.0.1",
"ssb-keys": "^8.2.0",
"mkdirp": "~1.0.4",
"standardx": "^7.0.0",
"tape": "^5.5.2",
"typescript": "~5.1.0"
},
"scripts": {
"clean-check": "tsc --build --clean && tsc; tsc --build --clean",
"prepublishOnly": "npm run clean-check && tsc --build && npm test",
"postpublish": "npm run clean-check",
"test": "npm run clean-check && npm run lint && npm run tape",
"lint-fix": "standardx --fix 'lib/**/*.js'",
"lint": "standardx 'lib/**/*.js'",
"tape": "tape test/*.js"
},
"author": "Dominic Tarr <[email protected]> (http://dominictarr.com)",
"license": "MIT"
}