forked from Consensys/eth-lightwallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.24 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
{
"name": "eth-lightwallet",
"version": "2.5.3",
"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 -g [ babelify --presets [ es2015 react ] ] | uglifyjs -c > dist/lightwallet.min.js",
"build-dev": "browserify index.js -o dist/lightwallet.js --s lightwallet -g [ babelify --presets [ es2015 react ] ]",
"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": "christian.lundkvist@gmail.com"
},
{
"name": "Tyler Clark",
"email": "tysclark@gmail.com"
},
{
"name": "Joel Torstensson",
"email": "me@joeltorstensson.se"
},
{
"name": "Zach Ferland",
"email": "zachferland@gmail.com"
},
{
"name": "Kevin Jiao",
"email": "kevin.jiao@berkeley.edu"
},
{
"name": "Marian Oancea",
"email": "marian.oancea@gmail.com"
},
{
"name": "John McDowall",
"email": "john@kantan.io"
},
{
"name": "Milad Mostavi",
"email": "milad.mostavi@gmail.com"
}
],
"license": "MIT",
"dependencies": {
"bignumber.js": "debris/bignumber.js#94d7146671b9719e00a09c29b01a691bc85048c2",
"bitcore-lib": "^0.13.19",
"bitcore-mnemonic": "^1.0.1",
"buffer": "^4.9.0",
"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",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"bluebird": "^3.3.1",
"browserify": "^13.1.0",
"chai": "^3.0.0",
"hooked-web3-provider": "christianlundkvist/hooked-web3-provider#updates_web3_14",
"istanbul": "^0.3.15",
"mocha": "^2.2.5",
"uglify-js": "^2.7.2"
}
}