/ package.json
package.json
1 { 2 "name": "autobounty", 3 "version": "1.0.0", 4 "description": "Automatically award bounty specified to the address in issue tracker", 5 "main": "index.js", 6 "scripts": { 7 "start": "node index.js", 8 "debug": "node --inspect-brk index.js", 9 "test": "./node_modules/mocha/bin/mocha --timeout 5s" 10 }, 11 "author": "", 12 "license": "ISC", 13 "dependencies": { 14 "@octokit/rest": "^15.2.5", 15 "axios": "^0.18.0", 16 "body-parser": "^1.17.2", 17 "cors": "^2.8.1", 18 "ethers": "^3.0", 19 "ethjs-provider-signer": "^0.1", 20 "ethjs-query": "^0.2", 21 "ethjs-signer": "^0.1", 22 "express": "^4.15.2", 23 "helmet": "^3.9.0", 24 "lodash": "^4.17.11", 25 "lru-cache": "^4.1.2", 26 "winston": "^3.0.0-rc3" 27 }, 28 "devDependencies": { 29 "chai": "^4.1.2", 30 "eslint": "^4.19.0", 31 "eslint-config-standard": "^11.0.0", 32 "eslint-plugin-import": "^2.9.0", 33 "eslint-plugin-node": "^6.0.1", 34 "eslint-plugin-promise": "^3.7.0", 35 "eslint-plugin-standard": "^3.0.1", 36 "mocha": "^5.0.4" 37 } 38 }