forked from ethers-io/ethers.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (47 loc) · 1.11 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
{
"name": "ethers-wallet",
"version": "1.0.4",
"description": "Ethereum wallet library.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/nodeunit tests/index.js",
"version": "grunt dist"
},
"dependencies": {
"aes-js": "2.0.0",
"elliptic": "6.3.1",
"inherits": "2.0.1",
"pbkdf2": "3.0.4",
"rlp": "2.0.0",
"setimmediate": "1.0.4",
"scrypt-js": "2.0.3",
"uuid": "2.0.1",
"xmlhttprequest": "1.8.0"
},
"browser": {
"./lib/random-bytes.js": "./lib/browser-random-bytes.js",
"xmlhttprequest": "./lib/browser-xmlhttprequest.js"
},
"devDependencies": {
"ethereumjs-abi": "0.6.2",
"ethereumjs-tx": "1.1.1",
"ethereumjs-util": "4.3.0",
"grunt": "^0.4.5",
"grunt-browserify": "^5.0.0",
"grunt-contrib-uglify": "^1.0.1",
"nodeunit": "0.9.1",
"web3": "0.15.3",
"ethereumjs-vm": "1.4.0",
"solc": "0.3.5"
},
"keywords": [
"ethereum",
"wallet"
],
"author": "Richard Moore <me@ricmoo.com>",
"repository": {
"type": "git",
"url": "git://github.com/ethers-io/ethers-wallet.git"
},
"license": "MIT"
}