forked from ssbc/secret-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.54 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.54 KB
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
{
"name": "secret-stack",
"description": "create secure peer to peer networks using secret-handshakes",
"version": "6.4.1",
"homepage": "https://github.com/ssb-js/secret-stack",
"repository": {
"type": "git",
"url": "git://github.com/ssb-js/secret-stack.git"
},
"main": "lib/index.js",
"files": [
"lib/*"
],
"dependencies": {
"debug": "^4.1.0",
"hoox": "0.0.1",
"map-merge": "^1.1.0",
"multiserver": "^3.1.0",
"muxrpc": "^6.5.2",
"pull-inactivity": "~2.1.1",
"pull-rate": "^1.0.2",
"pull-stream": "^3.4.5",
"to-camel-case": "^1.0.0"
},
"engines": {
"node": ">=5.10.0"
},
"devDependencies": {
"@types/node": "^12.12.2",
"@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": "~4.5.0"
},
"scripts": {
"prepublishOnly": "npm ls && npm test",
"compile": "tsc",
"lint-fix": "standardx --fix '**/*.ts'",
"lint": "standardx '**/*.ts'",
"tape": "tape test/*.js",
"test": "npm run lint && npm run compile && npm run tape"
},
"eslintConfig": {
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
},
"author": "Dominic Tarr <dominic.tarr@gmail.com> (http://dominictarr.com)",
"license": "MIT"
}