-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 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
{
"name": "eth-mine-when-need",
"version": "1.1.7",
"description": "This will start your Ethereum miner when there are transactions pending or waiting for confirmation",
"keywords": [
"eth",
"ethereum",
"mine",
"mining",
"transaction"
],
"homepage": "https://github.com/yxliang01/eth-mine-when-need",
"bin": {
"eth-mine-when-need": "dist/bin.js",
"emwn": "dist/bin.js"
},
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"build-publish": "babel src --out-dir dist --minified --compact true --no-comments",
"publish-please": "publish-please",
"prepublishOnly": "publish-please guard",
"prepull": "rimraf dist",
"postpull": "npm run build",
"postpublish": "git push --tags"
},
"preferGlobal": true,
"bugs": "https://github.com/yxliang01/eth-mine-when-need/issues",
"repository": "https://github.com/yxliang01/eth-mine-when-need.git",
"author": "Xiao Liang Yu",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"publish-please": "^2.2.0",
"rimraf": "^2.5.4"
},
"dependencies": {
"assert": "^1.4.1",
"babel-runtime": "^6.23.0",
"chalk": "^1.1.3",
"colors": "^1.1.2",
"defined": "^1.0.0",
"es6-promisify": "^5.0.0",
"ethereum-go-ipc": "^0.1.5",
"figlet": "^1.2.0",
"web3": "^0.18.2"
}
}