forked from bitpay/bitcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.88 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
{
"name": "crypto-wallet-core",
"version": "8.25.23",
"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": "npm run lint:ts && npm run lint:style",
"lint:ts": "tslint -c tslint.json 'src/**/*.ts'",
"lint:style": "prettier --check 'src/**/*.ts'",
"fix": "npm run fix:lint && npm run fix:style",
"fix:lint": "tslint --fix -c tslint.json 'src/**/*.ts'",
"fix:style": "prettier --write '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": "^8.25.10",
"bitcore-lib-cash": "^8.25.22",
"bitcore-lib-doge": "^8.25.10",
"bitcore-lib-ltc": "^8.25.14",
"ethers": "^5.0.12",
"info": "0.0.6-beta.0",
"ripple-binary-codec": "0.2.6",
"ripple-keypairs": "git+https://[email protected]/bitpay/ripple-keypairs.git#8d3a4643a8ddfce8222786e1e5a3e85a89a5b7f5",
"ripple-lib": "^1.8.0",
"web3": "1.4.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": "^3.6.5"
},
"gitHead": "012cc0216a9bc6b195035855bd17149bad41acd1",
"lint-staged": {
"*.{ts}": [
"tslint --fix -c tslint.json",
"prettier --write",
"git add"
],
"*.{js,ts,css,json,md}": [
"prettier --write",
"git add"
]
}
}