This repository has been archived by the owner on Mar 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 284
/
package.json
129 lines (129 loc) · 3.6 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "blockchain-wallet-client",
"version": "3.43.8",
"description": "Blockchain.info JavaScript Wallet",
"homepage": "https://github.com/blockchain/my-wallet-v3",
"bugs": {
"url": "https://github.com/blockchain/my-wallet-v3/issues"
},
"license": "ISC",
"author": {
"name": "Blockchain.info",
"url": "https://blockchain.info"
},
"contributors": [
"Ben Reeves",
"Tim Lee",
"Mark Pfluger",
"Sjors Provoost",
"Jaume Pernas",
"Antoine Le Calvez",
"Kevin Woudini",
"Justin Tormey"
],
"main": "lib/index.js",
"module": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/blockchain/my-wallet-v3.git"
},
"scripts": {
"prepublish": "node_modules/.bin/babel src --presets babel-preset-es2015 --out-dir lib",
"dist": "NODE_ENV=\"prod\" ./node_modules/.bin/webpack",
"build": "./node_modules/.bin/webpack --progress",
"build:watch": "./node_modules/.bin/webpack -w",
"clean": "rm -rf dist/ coverage/ coverage-lcov/",
"test": "./node_modules/.bin/karma start karma.conf.js",
"test:chrome": "./node_modules/.bin/karma start karma.conf.js --browsers ChromeHeadless"
},
"browser": {
"ws": "./src/ws-browser.js"
},
"dependencies": {
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"bigi": "1.4.*",
"bignumber.js": "^4.0.2",
"bip39": "2.1.*",
"bitcoin-coinify-client": "^0.7.6",
"bitcoin-sfox-client": "^0.3.0",
"bitcoin-unocoin-client": "^0.3.6",
"bitcoincashjs-lib": "https://github.com/blockchain/bitcoinjs-lib#d0b716fe0660d7db0e53a616f02312dfaab2b761",
"bitcoinjs-lib": "2.1.*",
"bs58": "2.0.*",
"cashaddress": "^1.1.0",
"core-js": "^2.4.1",
"es6-promise": "^3.0.2",
"ethereumjs-tx": "^1.3.1",
"ethereumjs-util": "^5.1.2",
"ethereumjs-wallet": "^0.6.0",
"isomorphic-fetch": "^2.2.1",
"pbkdf2": "^3.0.12",
"ramda": "^0.22.1",
"ramda-lens": "^0.1.2",
"randombytes": "^2.0.1",
"scryptsy": "^2.0.0",
"unorm": "^1.4.1",
"ws": "2.0.*"
},
"devDependencies": {
"babel-cli": "~6.24.0",
"babel-loader": "6.2.10",
"babel-plugin-transform-object-assign": "~6.22.0",
"babel-polyfill": "6.16.*",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "7.3.*",
"browserify": "13.*",
"browserify-istanbul": "2.0.*",
"bs58check": "^1.0.5",
"coveralls": "^2.11.16",
"eslint": "2.*",
"fetch-mock": "^5.1.2",
"git-changelog": "1.0.*",
"istanbul": "~0.4.5",
"jasmine-core": "^2.2.0",
"jasmine-es6-promise-matchers": "^2.0.1",
"karma": "1.7.*",
"karma-browserify": "5.1.*",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "1.1.*",
"karma-jasmine": "1.1.*",
"karma-osx-reporter": "0.2.*",
"karma-phantomjs-launcher": "1.0.*",
"phantomjs-prebuilt": "2.1.*",
"proxyquireify": "3.2.*",
"semistandard": "8.*",
"string-replace-webpack-plugin": "0.0.5",
"watchify": "~3.9.0",
"webpack": "2.5.*"
},
"semistandard": {
"ignore": [],
"globals": [
"fetch",
"XMLHttpRequest",
"Audio",
"assert",
"describe",
"xdescribe",
"it",
"xit",
"beforeEach",
"afterEach",
"expect",
"except",
"spyOn",
"jasmine",
"JasminePromiseMatchers",
"pending",
"localStorage"
]
},
"engines": {
"node": "7.5"
}
}