-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·113 lines (113 loc) · 3.19 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "blockchain-wallet-v4",
"version": "1.0.1",
"description": "Functional library for handling Blockchain.com wallets.",
"license": "AGPL-3.0-or-later",
"author": {
"name": "Blockchain",
"url": "https://blockchain.com"
},
"main": "lib/index.js",
"module": "src/index.js",
"scripts": {
"ci:test": "yarn test --runInBand",
"clean": "cross-env rimraf node_modules && rimraf lib",
"compile": "npx babel -d lib/ --ignore spec.js src/ --copy-files",
"coverage": "cross-env npx jest --coverage",
"link:resolved:paths": "ln -sf $(pwd)/src/** ./node_modules && ln -sf $(pwd)/../../packages/blockchain-wallet-v4-frontend ./node_modules",
"test": "cross-env npx jest --silent",
"test:build": "yarn compile",
"test:debug": "cross-env npx --inspect-brk jest --runInBand",
"test:watch": "cross-env npx jest --watchAll"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/rootSaga.js",
"!src/exchange/currencies/*.js",
"!src/network/index.js",
"!src/redux/**/sagaRegister.js",
"!src/redux/actions.js",
"!src/redux/actionTypes.js",
"!src/redux/reducers.js",
"!src/redux/sagas.js",
"!src/redux/rootSaga.js",
"!src/redux/reducers.js",
"!src/redux/middleware.js"
],
"coverageDirectory": "<rootDir>/../../coverage/blockchain-wallet-v4",
"coverageReporters": [
"json",
"html"
],
"globals": {
"ts-jest": {
"diagnostics": {
"ignoreCodes": [
2321
]
}
}
},
"modulePathIgnorePatterns": [
"<rootDir>/lib"
],
"setupFiles": [
"<rootDir>/../../config/jest/jest.shim.js",
"<rootDir>/../../config/jest/jest.config.js"
],
"testPathIgnorePatterns": [
"<rootDir>/lib"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.tsx?$": "ts-jest"
}
},
"dependencies": {
"axios": "0.19.0",
"bech32": "1.1.3",
"big-rational": "0.10.7",
"bigi": "1.4.2",
"bignumber.js": "8.0.2",
"bip32": "1.0.2",
"bip32-path": "0.4.2",
"bip39": "2.5.0",
"bip69": "2.1.4",
"bitcoinforksjs-lib": "git://github.com/blockchain/bitcoinjs-lib.git#opt-in-bitcoincash-sighash",
"bitcoinjs-lib": "3.1.1",
"bitcoinjs-message": "2.0.0",
"bs58": "4.0.1",
"cashaddress": "1.1.0",
"daggy": "1.3.0",
"data.either": "1.5.2",
"data.maybe": "1.2.3",
"data.task": "3.1.2",
"ed25519-hd-key": "1.0.0",
"es6-promise": "4.2.6",
"ethereumjs-abi": "0.6.7",
"ethereumjs-tx": "1.3.7",
"ethereumjs-util": "5.1.3",
"ethereumjs-wallet": "0.6.2",
"extendable-immutable": "1.3.3",
"fast-memoize": "2.5.1",
"fisher-yates": "1.0.3",
"futurize": "1.2.0",
"immutable": "3.8.1",
"immutable-ext": "1.1.5",
"isomorphic-fetch": "2.2.1",
"pbkdf2": "3.0.17",
"query-string": "6.5.0",
"ramda": "0.26.1",
"ramda-lens": "git+https://github.com/ramda/ramda-lens.git",
"read-blob": "1.1.0",
"redux": "4.0.1",
"redux-immutable": "4.0.0",
"redux-saga": "1.1.3",
"reselect": "4.0.0",
"scryptsy": "2.0.0",
"seedrandom": "2.4.3",
"stellar-sdk": "0.15.0",
"unorm": "1.5.0"
}
}