-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.59 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
{
"name": "erc20-wallet",
"version": "1.0.5",
"description": "Paquete para wallets erc20",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/lomeliDev/erc20-wallet.git"
},
"bugs": {
"url": "https://github.com/lomeliDev/erc20-wallet/issues"
},
"homepage": "https://github.com/lomeliDev/erc20-wallet#readme",
"scripts": {
"lint": "eslint lib/index.js",
"prebuild": "npm run lint",
"build": "babel lib --out-dir build --minified",
"pretest": "npm run build",
"test": "babel-node test/index.js | tap-spec",
"prepublish": "npm run test"
},
"keywords": [
"erc20",
"token",
"ethereum",
"wallet",
"smart contract",
"wallets",
"eth",
"tokens",
"lomeli",
"Lomelí Technology",
"Lomeli Technology",
"miguel lomeli",
"toopago"
],
"contributors": [
{
"name": "Miguel Lomeli",
"email": "[email protected]"
}
],
"author": "Miguel Lomeli <[email protected]> (https://lomeli.io/)",
"license": "MIT",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-preset-es2015": "^6.24.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"tap-spec": "^5.0.0",
"tape": "^4.13.0"
},
"dependencies": {
"eth-lightwallet": "git+https://github.com/lomeliDev/eth-lightwallet.git",
"etherscan-api": "^10.0.5",
"hooked-web3-provider": "^1.0.0"
}
}