-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (67 loc) · 2.36 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
{
"name": "@prokey-io/webcore",
"version": "0.3.1",
"license": "GPL-3.0",
"files": [
"dist/**/*",
"protob/**/*"
],
"description": "This module can be used to communicate with Prokey device",
"author": "Prokey Technologies Sdn. Bhd. <[email protected]>",
"dependencies": {
"@ethersproject/bignumber": "^5.6.2",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@metamask/eth-sig-util": "^4.0.1",
"@types/bytebuffer": "^5.0.40",
"assert": "^2.0.0",
"bignumber.js": "^9.0.1",
"bs58": "^5.0.0",
"bs58check": "^3.0.1",
"buffer": "^5.4.3",
"bytebuffer": "^5.0.1",
"compare-versions": "^3.6.0",
"core-js": "^2.6.11",
"crypto": "^1.0.1",
"crypto-js": "3.1.9-1",
"events": "^3.2.0",
"multicoin-address-validator": "^0.4.8",
"protobufjs": "^6.11.2",
"rxjs": "~6.2.0",
"stream": "0.0.2",
"typescript-http-client": "^0.10.1",
"websocket": "^1.0.34"
},
"scripts": {
"build": "tsc",
"prepublish": "tsc && copyfiles data/ProkeyCoinsInfo.json dist/src/data/ProkeyCoinsInfo.json",
"test": "mocha --require mocha-suppress-logs --require mock-local-storage --require ts-node/register test/**/*.test.ts --timeout 30000",
"test-xpub": "mocha --require mock-local-storage --require ts-node/register test/utils/publicKeyUtils.test.ts"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-things": "^0.0.35",
"@types/mocha": "^9.1.1",
"@types/sinon": "^10.0.12",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-things": "^0.2.0",
"copyfiles": "^2.4.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.1.0",
"mocha": "^10.0.0",
"mocha-suppress-logs": "^0.3.1",
"mock-local-storage": "^1.1.23",
"mock-xmlhttprequest": "^7.0.4",
"prettier": "^2.7.1",
"sinon": "^14.0.0",
"ts-node": "^10.8.1",
"typescript": "^4.2.3",
"xhr-mock": "^2.5.1",
"xmlhttprequest": "^1.8.0"
}
}