-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.5 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.5 KB
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
{
"name": "ethlightjs",
"version": "0.0.4",
"description": "A light weight ethereum javascript wallet.",
"main": "index.js",
"scripts": {
"build-js": "browserify index.js --s ethlightjs | uglifyjs -mc > dist/ethlightjs.min.js",
"build-dev": "browserify index.js -o dist/ethlightjs.js --s ethlightjs",
"test": "./node_modules/.bin/mocha --reporter spec",
"coverage": "istanbul cover _mocha -- -R spec; open coverage/lcov-report/index.html"
},
"keywords": [
"ethereum",
"blockchain",
"transactions",
"contracts"
],
"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"
}
],
"license": "ISC",
"dependencies": {
"bitcore": "^0.12.8",
"bitcore-mnemonic": "^0.11.0",
"crypto-js": "^3.1.5",
"elliptic": "^3.1.0",
"rlp": "^1.0.0",
"web3": "^0.12.2",
"ethereumjs-tx": "^0.6.6",
"ethereumjs-util": "^1.2.0",
"bignumber.js": "debris/bignumber.js#master",
"xhr2" : "*",
"hooked-web3-provider" : "^0.0.3"
},
"devDependencies": {
"browserify": "^10.2.4",
"chai": "^3.0.0",
"istanbul": "^0.3.15",
"mocha": "^2.2.5",
"uglify-js": "^2.4.23"
}
}