forked from blockchain/blockchain-wallet-v4-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·103 lines (103 loc) · 3.16 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
{
"name": "blockchain-wallet-v4",
"version": "1.0.1",
"description": "Functional library for handling Blockchain.info wallets.",
"license": "AGPL-3.0-or-later",
"author": {
"name": "Blockchain.info",
"url": "https://blockchain.com"
},
"main": "lib/index.js",
"module": "src/index.js",
"scripts": {
"ci:test": "yarn test --runInBand",
"ci:coverage:core": "yarn coverage --runInBand",
"clean": "cross-env rimraf node_modules && rimraf lib",
"compile": "babel -d lib/ --ignore spec.js src/ --copy-files",
"coverage": "cross-env ./../../node_modules/.bin/jest --coverage",
"link:resolved:paths": "ln -sf $(pwd)/src/** ./node_modules && ln -sf $(pwd)/../../packages/blockchain-wallet-v4-frontend ./node_modules",
"start": "babel-node src/index.js",
"test": "cross-env ./../../node_modules/.bin/jest --silent",
"test:build": "yarn compile",
"test:debug": "cross-env node --inspect-brk ./../../node_modules/.bin/jest --runInBand",
"test:watch": "cross-env ./../../node_modules/.bin/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"
],
"modulePathIgnorePatterns": [
"<rootDir>/lib"
],
"testPathIgnorePatterns": [
"<rootDir>/lib"
],
"transform": {
"^.+\\.(js|jsx)$": "babel-jest"
}
},
"dependencies": {
"axios": "0.18.0",
"bech32": "1.1.3",
"big-rational": "0.10.7",
"bigi": "1.4.2",
"bignumber.js": "8.0.1",
"bip32": "1.0.2",
"bip32-path": "0.4.2",
"bip39": "2.5.0",
"bip69": "2.1.4",
"bitcoin-coinify-client": "0.8.0",
"bitcoin-sfox-client": "0.4.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",
"chai-immutable": "1.6.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.5",
"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.2.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": "0.16.2",
"reselect": "4.0.0",
"scryptsy": "2.0.0",
"seedrandom": "2.4.3",
"stellar-sdk": "0.11.0",
"unorm": "1.4.1"
}
}