-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
38 lines (38 loc) · 946 Bytes
/
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
{
"name": "ethers-cli",
"version": "5.0.0-beta.2",
"description": "Command-Line Interface to ethers.io and ethers.space.",
"main": "index.js",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"auto-build": "npm run build -- -w",
"test": "./node_modules/mocha/bin/mocha --timeout 6000000 tests/test-*.js"
},
"bin": {
"ethers": "./bin/ethers.js",
"ethers-ts": "./bin/ethers-ts.js",
"ethers-ens": "./bin/ethers-ens.js"
},
"dependencies": {
"@types/node": "^10.3.2",
"abs": "1.3.6",
"ethers": "^4.0.24",
"ethers-ens": "^1.0.0-beta.1",
"ethers-ledger": "0.0.1",
"mime-types": "2.1.11",
"solc": "^0.5.2",
"solidity-parser-antlr": "^0.3.2"
},
"devDependencies": {
"mocha": "^5.2.0",
"typescript": "^2.9.1"
},
"keywords": [
"ethers",
"ethereum",
"cli",
"command line interface"
],
"author": "Richard Moore <[email protected]>",
"license": "MIT"
}