-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
44 lines (44 loc) · 1.21 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
{
"name": "muxrpc",
"description": "combined multiplexing and rpc - because a node api needs streams & async",
"version": "8.0.0",
"homepage": "https://github.com/ssbc/muxrpc",
"repository": {
"type": "git",
"url": "git://github.com/ssbc/muxrpc.git"
},
"files": [
"*.js"
],
"dependencies": {
"debug": "^4.3.3",
"clarify-error": "^1.0.0",
"packet-stream": "~2.0.0",
"packet-stream-codec": "^1.2.0",
"pull-goodbye": "0.0.3",
"pull-stream": "^3.6.10"
},
"devDependencies": {
"c8": "^7.11.0",
"cont": "~1.0.1",
"json-buffer": "~2.0.9",
"pull-abortable": "~4.1.0",
"pull-pair": "~1.0.0",
"pull-pushable": "^1.1.4",
"pull-serializer": "~0.2.0",
"standardx": "^7.0.0",
"tap-bail": "^1.0.0",
"tap-spec": "^5.0.0",
"tape": "~5.2.2"
},
"scripts": {
"prepublishOnly": "npm ls && npm test",
"tape": "tape test/*.js | tap-bail | tap-spec",
"test": "standardx '**/*.js' && npm run tape",
"coverage": "c8 --reporter=lcov npm run tape",
"test-verbose": "TEST_VERBOSE=1 npm test",
"lint": "standardx --fix '**/*.js'"
},
"author": "Dominic Tarr <[email protected]> (http://dominictarr.com)",
"license": "MIT"
}