-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
87 lines (87 loc) · 2.31 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
{
"name": "eth-signer",
"version": "0.1.2",
"description": "A lightweight ethereum javascript signer.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ConsenSys/eth-signer.git"
},
"scripts": {
"build-js": "browserify index.js --s EthSigner | derequire | uglifyjs -c > dist/eth-signer.min.js",
"build-dev": "browserify index.js --s EthSigner | derequire > dist/eth-signer.js",
"test": "./node_modules/.bin/mocha --reporter spec --recursive",
"autotest": "./node_modules/.bin/supervisor -q -n exit -x ./node_modules/.bin/mocha -- --reporter spec --recursive",
"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]"
},
{
"name": "John McDowall",
"email": "[email protected]"
},
{
"name": "Pelle Braendgaard",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"bignumber.js": "debris/bignumber.js#94d7146671b9719e00a09c29b01a691bc85048c2",
"bitcore-lib": "^0.13.13",
"bitcore-mnemonic": "^1.0.1",
"ethereum-bip44": "2.0.3",
"crypto-js": "^3.1.5",
"elliptic": "^3.1.0",
"ethereumjs-tx": "^1.1.1",
"ethereumjs-util": "^4.5.0",
"rlp": "^2.0.0",
"scrypt-async": "^1.2.0",
"tweetnacl": "0.13.2",
"web3": "^0.15.3",
"secp256k1": "^3.1.0",
"elliptic": "^6.2.3"
},
"devDependencies": {
"async": "^1.4.2",
"bluebird": "^3.3.1",
"browserify": "^10.2.6",
"chai": "^3.0.0",
"derequire": "^2.0.3",
"hooked-web3-provider": "christianlundkvist/hooked-web3-provider#updates_web3_14",
"istanbul": "^0.3.15",
"mocha": "^2.2.5",
"supervisor": "~0.9.1",
"uglify-js": "^2.4.23"
}
}