-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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
{
"name": "blockx",
"version": "2.2.0",
"description": "Block explorer for Ethereum using Infura. Built in Node.js.",
"main": "index.js",
"scripts": {
"pretest": "eslint --ignore-path .gitignore . lib/**/* bin/**/*",
"test": "node __tests__/app.js",
"dev": "node ./bin/global.js r"
},
"repository": {
"type": "git",
"url": "https://github.com/gwenf/block-explorer.git"
},
"keywords": [
"ethereum",
"blockchain",
"block",
"explorer"
],
"author": "Gwendolyn Faraday <[email protected]> (http://gwenfaraday.com/)",
"license": "MIT",
"dependencies": {
"axios": "0.18.0",
"big-integer": "1.6.36",
"chalk": "2.4.1",
"clear": "0.1.0",
"clui": "0.3.6",
"commander": "2.17.1",
"configstore": "4.0.0",
"dotenv": "6.0.0",
"figlet": "1.2.0",
"inquirer": "6.2.0",
"minimist": "1.2.0",
"web3": "1.0.0-beta.35"
},
"devDependencies": {
"eslint": "5.5.0",
"expect": "23.5.0",
"nodemon": "1.18.4"
},
"bin": {
"bex": "./bin/global.js"
},
"preferGlobal": true
}