snt-gas-relay/gas-relayer/package.json

36 lines
1015 B
JSON
Raw Normal View History

2018-04-10 11:42:36 -04:00
{
"name": "gas-relayer",
"version": "0.0.1",
"description": "Gas relayer to avoid having to hold ether to perform transactions when you already have a token",
"main": "src/service.js",
2018-04-10 11:42:36 -04:00
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/service.js"
2018-04-10 11:42:36 -04:00
},
"author": "",
"license": "ISC",
2018-08-06 09:18:30 -04:00
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0"
},
2018-04-10 11:42:36 -04:00
"dependencies": {
2018-09-17 14:17:48 -04:00
"axios": "^0.18.0",
2018-10-10 15:31:04 -04:00
"bip39": "^2.5.0",
2018-09-18 09:11:53 -04:00
"consola": "^1.4.3",
2018-04-10 11:42:36 -04:00
"daemonize2": "^0.4.2",
2018-10-10 15:31:04 -04:00
"ethereumjs-wallet": "^0.6.2",
2018-04-17 16:40:31 -04:00
"ganache-cli": "^6.1.0",
2018-09-14 15:53:15 -04:00
"jsum": "^0.1.4",
2018-09-18 09:11:53 -04:00
"memory-cache": "^0.2.0",
"web3": "^1.0.0-beta.33",
"winston": "^3.1.0"
2018-04-10 11:42:36 -04:00
}
}