forked from pipermerriam/eth-lightwallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.88 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
{
"name": "eth-lightwallet",
"version": "2.3.1",
"description": "A lightweight ethereum javascript wallet.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ConsenSys/eth-lightwallet.git"
},
"scripts": {
"build-js": "browserify index.js --s lightwallet | uglifyjs -c > dist/lightwallet.min.js",
"build-dev": "browserify index.js -o dist/lightwallet.js --s lightwallet",
"test": "./node_modules/.bin/mocha --reporter spec",
"coverage": "istanbul cover _mocha -- -R spec; open coverage/lcov-report/index.html"
},
"keywords": [
"ethereum",
"blockchain",
"transactions",
"contracts",
"wallet"
],
"contributors": [
{
"name": "Christian Lundkvist",
"email": "[email protected]"
},
{
"name": "Tyler Clark",
"email": "[email protected]"
},
{
"name": "Joel Torstensson",
"email": "[email protected]"
},
{
"name": "Zach Ferland",
"email": "[email protected]"
},
{
"name": "Kevin Jiao",
"email": "[email protected]"
},
{
"name": "Marian Oancea",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"bignumber.js": "debris/bignumber.js#94d7146671b9719e00a09c29b01a691bc85048c2",
"bitcore-lib": "^0.13.13",
"bitcore-mnemonic": "^1.0.1",
"crypto-js": "^3.1.5",
"elliptic": "^3.1.0",
"ethereumjs-tx": "^1.1.1",
"ethereumjs-util": "^4.3.1",
"rlp": "^2.0.0",
"scrypt-async": "^1.2.0",
"tweetnacl": "0.13.2",
"web3": "^0.15.3"
},
"devDependencies": {
"async": "^1.4.2",
"bluebird" : "^3.3.1",
"browserify": "^10.2.4",
"chai": "^3.0.0",
"istanbul": "^0.3.15",
"mocha": "^2.2.5",
"uglify-js": "^2.4.23",
"hooked-web3-provider": "christianlundkvist/hooked-web3-provider#updates_web3_14"
}
}