forked from mattiash/bidirectional-rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.23 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
{
"name": "bidirectional-rpc",
"version": "4.0.1",
"description": "Bidirectional RPC over tcp/tls",
"main": "build/index.js",
"scripts": {
"lint": "prettier -l *.ts lib/*.ts test/*.ts",
"prepare": "tsc",
"prepublishOnly": "npm run lint && npm run test",
"test": "tsc && nyc --exclude-after-remap false --exclude build/test/ multi-tape -o -p 4 build/test/test-*.js",
"test-travis": "tsc && nyc --exclude-after-remap false --exclude build/test/ --reporter=lcov multi-tape -o -p 4 build/test/test-*.js"
},
"author": "Mattias Holmlund <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/mattiash/bidirectional-rpc.git"
},
"bugs": {
"url": "https://github.com/mattiash/bidirectional-rpc/issues"
},
"dependencies": {
"rxjs": "^6.2.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/node": "^9.4.5",
"@types/uuid": "^3.4.3",
"coveralls": "^3.0.4",
"multi-tape": "^1.3.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"purple-tape": "^2.0.1",
"source-map-support": "^0.5.12",
"typescript": "^3.5.2"
}
}