autobounty/package.json

37 lines
943 B
JSON
Raw Normal View History

2017-03-07 12:24:01 +01:00
{
"name": "autobounty",
2017-03-07 12:24:01 +01:00
"version": "1.0.0",
"description": "Automatically award bounty specified to the address in issue tracker",
2017-03-07 12:24:01 +01:00
"main": "index.js",
"scripts": {
"start": "node index.js",
2018-03-19 21:44:23 +01:00
"debug": "node --inspect-brk index.js",
2018-01-23 14:39:12 +01:00
"test": "./node_modules/mocha/bin/mocha"
2017-03-07 12:24:01 +01:00
},
"author": "",
"license": "ISC",
"dependencies": {
2017-06-11 11:53:57 +05:30
"body-parser": "^1.17.2",
2017-03-07 12:24:01 +01:00
"cors": "^2.8.1",
2018-03-20 09:50:09 +01:00
"ethers": "^3.0",
"ethjs-provider-signer": "^0.1",
"ethjs-query": "^0.2",
"ethjs-signer": "^0.1",
2017-03-10 10:01:43 +01:00
"express": "^4.15.2",
2018-01-20 13:51:57 +01:00
"helmet": "^3.9.0",
2018-01-17 16:48:56 +00:00
"lodash": "^4.17.4",
2018-01-22 12:24:19 +01:00
"web3": "^0.18.2",
2018-03-20 09:50:09 +01:00
"winston": "^3.0.0-rc3"
2018-03-19 23:02:24 +01:00
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^5.0.4"
2017-03-07 12:24:01 +01:00
}
}