-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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
{
"name": "svc-facs-tcp",
"version": "0.1.0",
"description": "svc facility for tcp rpc client",
"main": "index.js",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm run lint && npm run test:unit",
"test:unit": "brittle test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tetherto/svc-facs-tcp.git"
},
"keywords": [
"tcp",
"facility",
"rpc"
],
"author": {
"name": "prdn",
"email": "paolo@bitfinex.com"
},
"maintainers": [
{
"name": "prdn",
"email": "paolo@bitfinex.com"
},
{
"name": "vigan.abd",
"email": "vigan.abdurrahmani@bitfinex.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tetherto/svc-facs-tcp/issues"
},
"homepage": "https://github.com/tetherto/svc-facs-tcp#readme",
"dependencies": {
"@bitfinex/lib-js-util-promise": "git+https://github.com/bitfinexcom/lib-js-util-promise.git",
"async": "^3.2.4",
"bfx-facs-base": "git+https://github.com/bitfinexcom/bfx-facs-base.git"
},
"devDependencies": {
"brittle": "^3.3.2",
"sinon": "^15.2.0",
"standard": "^17.1.0"
}
}