-
Notifications
You must be signed in to change notification settings - Fork 503
/
package.json
executable file
·90 lines (90 loc) · 2.38 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
{
"name": "eth-lightwallet",
"version": "4.0.0",
"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 [ @babel/preset-env @babel/preset-react ] ] | uglifyjs -c > dist/lightwallet.min.js",
"build-dev": "browserify index.js -o dist/lightwallet.js --s lightwallet -g [ babelify --presets [ @babel/preset-env @babel/preset-react ] ]",
"test": "./node_modules/.bin/mocha --reporter spec",
"coverage": "istanbul cover _mocha -- -R spec; open coverage/lcov-report/index.html",
"prepublish": "mkdir -p dist && npm run build-dev && npm run build-js"
},
"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]"
},
{
"name": "John McDowall",
"email": "[email protected]"
},
{
"name": "Milad Mostavi",
"email": "[email protected]"
},
{
"name": "Slava Matvienco",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"bitcore-lib": "8.1.1",
"bitcore-mnemonic": "8.1.1",
"crypto-js": "3.1.8",
"elliptic": "6.4.1",
"ethereumjs-tx": "1.3.7",
"ethereumjs-util": "6.1.0",
"rlp": "2.2.3",
"scrypt-async": "2.0.1",
"tweetnacl": "1.0.1",
"tweetnacl-util": "0.15.0",
"web3": "0.20.7"
},
"devDependencies": {
"@babel/core": "7.4.0",
"@babel/preset-env": "7.4.2",
"@babel/preset-react": "7.0.0",
"async": "2.6.2",
"babelify": "10.0.0",
"bluebird": "3.5.3",
"browserify": "16.2.3",
"chai": "4.2.0",
"hooked-web3-provider": "christianlundkvist/hooked-web3-provider#updates_web3_14",
"istanbul": "0.4.5",
"mocha": "6.0.2",
"uglify-js": "3.5.2"
}
}