-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.61 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.61 KB
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": "@exiliontech/walletcs",
"version": "2.0.26",
"scripts": {
"test": "jest",
"compile": "babel src --out-dir lib"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.6.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.2.0",
"husky": "^3.0.7",
"jest": "^24.1.0"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/runtime": "^7.6.3",
"abi-decoder": "^1.2.0",
"babel-polyfill": "^6.26.0",
"bip32": "^2.0.4",
"bip39": "^3.0.2",
"bitcoinjs-lib": "^5.0.1",
"bitcore-lib": "^8.6.0",
"clone-deep": "^4.0.1",
"ethers": "^4.0.25",
"extends-classes": "^1.0.5",
"lodash": "^4.17.15q",
"papaparse": "^5.0.0",
"web3": "^1.0.0"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"description": "Works with ethereum transactions",
"main": "lib/index",
"typings": "types/index",
"directories": {
"test": "src/ether/tests"
},
"repository": {
"type": "git",
"url": "https://github.com/walletcs/walletcs-lib"
},
"keywords": [
"walletcs"
],
"files": [
"src",
"lib"
],
"author": "exiliontech",
"license": "Apache-2.0",
"homepage": "https://github.com/walletcs/walletcs-lib#readme",
"husky": {
"hooks": {
"pre-commit": "npm run compile",
"pre-push": "npm publish --access public"
}
}
}