-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
75 lines (75 loc) · 1.73 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
69
70
71
72
73
74
75
{
"name": "stratum",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git://github.com/pocesar/node-stratum.git"
},
"license": "GPL-1.0",
"bin": {
"stratum-notify": "./bin/stratum-notify"
},
"types": "lib/index.d.ts",
"main": "./lib",
"directories": {
"lib": "./lib",
"bin": "./bin"
},
"description": "Stratum protocol server and client for node.js",
"keywords": [
"stratum",
"bitcoin",
"litecoin",
"ppcoin",
"altcoin",
"json-rpc",
"json-rpc2",
"jsonrpc2",
"jsonrpc",
"cryptocoin",
"rpc",
"daemon",
"server",
"protocol",
"tcp",
"socket"
],
"dependencies": {
"@types/bluebird": "^3.5.18",
"@types/commander": "^2.12.2",
"@types/debug": "^0.0.30",
"@types/lodash": "^4.14.91",
"@types/uuid": "^3.4.3",
"source-map-support": "^0.5.0",
"commander": "^2.12.2",
"chalk": "^2.3.0",
"json-rpc2": "^1.0.2",
"debug": "^3.1.0",
"toobusy-js": "^0.5.1",
"lodash": "^4.17.4",
"bluebird": "^3.5.1",
"uuid": "^3.1.0",
"eventemitter3": "^3.0.0",
"better-curry": "^1.6.0",
"snyk": "^1.192.3"
},
"devDependencies": {
"@types/mocha": "^2.2.44",
"@types/sinon": "^4.1.2",
"@types/chai": "^4.0.10",
"typescript": "^2.6.2",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"sinon": "^4.1.3",
"nyc": "^11.3.0",
"coveralls": "^3.0.0"
},
"scripts": {
"test": "node ./node_modules/typescript/bin/tsc -p tests.json && mocha test",
"coverage": "nyc mocha test",
"coveralls": "nyc mocha test && cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"snyk": true
}