-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "node_menu_tx",
"version": "1.0.1",
"description": "NodeJS Ethereum Tx with Ganache",
"main": "app.js",
"scripts": {
"start": "babel-node --presets es2015 app.js",
"ganache": "ganache-cli -p 8545 --deterministic > /dev/null &",
"stop": "sudo kill `sudo lsof -t -i:8545`",
"fix": "eslint ./ --fix",
"lint": "eslint ./",
"test": "npm run ganache sleep 5 && jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"nodejs",
"ethereum",
"ganache"
],
"author": "Nicolas Frega - <frega.nicolas@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/NFhbar/nodeJS-ETH-transaction"
},
"license": "MIT",
"dependencies": {
"babel-cli": "^6.0.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"dotenv": "^5.0.1",
"ethereumjs-tx": "^1.3.3",
"ganache-cli": "^6.1.0",
"node-menu": "^1.3.0",
"node-run-cmd": "^1.0.1",
"web3": "^1.0.0-beta.26"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"jest": "^22.4.3"
}
}