forked from bitpay/bitcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.79 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
{
"name": "crypto-wallet-core",
"version": "8.16.0",
"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",
"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.16.0",
"bitcore-lib-cash": "^8.16.0",
"ethers": "4.0.37",
"ripple-binary-codec": "0.2.6",
"ripple-keypairs": "git+https://[email protected]/bitpay/ripple-keypairs.git#8d3a4643a8ddfce8222786e1e5a3e85a89a5b7f5",
"ripple-lib": "1.4.2",
"web3": "1.2.1"
},
"devDependencies": {
"@types/chai": "4.1.7",
"@types/mocha": "5.2.6",
"@types/node": "10.12.15",
"@types/web3": "1.0.19",
"chai": "4.2.0",
"mocha": "6.1.4",
"ts-node": "8.1.0",
"tslint": "5.14.0",
"typescript": "3.3.4000"
},
"gitHead": "012cc0216a9bc6b195035855bd17149bad41acd1",
"lint-staged": {
"*.{ts}": [
"tslint --fix -c tslint.json",
"prettier --write",
"git add"
],
"*.{js,ts,css,json,md}": [
"prettier --write",
"git add"
]
}
}