-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 812 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 812 Bytes
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
{
"name": "@digix/web3-console",
"version": "0.0.1",
"description": "JS REPL with connected Web3",
"main": "index.js",
"scripts": {
"compile": "rm -rf bin/* && ./node_modules/.bin/babel src -d bin",
"prepublish": "npm run compile"
},
"bin": {
"web3-console": "./bin/index.js"
},
"author": "Chris Hitchcott <hitchcott@gmail.com> (http://hitchcott.com)",
"license": "ISC",
"dependencies": {
"chalk": "^1.1.3",
"minimist": "^1.2.0",
"web3": "^0.18.2"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-2": "^6.17.0",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0"
}
}