-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
package.json
46 lines (46 loc) · 1.31 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
{
"name": "crypto-wallet-core",
"version": "10.5.5",
"description": "A multi-currency support library for address derivation, private key creation, and transaction creation",
"main": "./ts_build/src/index.js",
"types": "./ts_build/src/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf ts_build && tsc --version",
"compile": "npm run clean && npm run build",
"precommit": "npm run fix",
"lint": "tslint -c ../../tslint.json 'src/**/*.ts'",
"fix": "tslint --fix -c ../../tslint.json 'src/**/*.ts'",
"test": "npm run compile && mocha -r ts-node/register test/*.ts",
"pub": "npm run compile && npm publish"
},
"keywords": [
"multi-currency",
"addresses",
"and",
"transactions"
],
"author": "Micah Riggan",
"license": "MIT",
"dependencies": {
"bitcore-lib": "^10.5.3",
"bitcore-lib-cash": "^10.5.3",
"bitcore-lib-doge": "^10.5.3",
"bitcore-lib-ltc": "^10.5.3",
"ethers": "^5.7.0",
"info": "0.0.6-beta.0",
"web3": "1.4.0",
"xrpl": "2.13.0"
},
"devDependencies": {
"@types/chai": "4.1.7",
"@types/mocha": "5.2.6",
"@types/node": "^14.10.0",
"chai": "4.2.0",
"mocha": "6.1.4",
"ts-node": "8.1.0",
"tslint": "5.14.0",
"typescript": "4.9.4"
},
"gitHead": "e091d99915d099863ad3e78dbe867aa7780191e4"
}