daily-typing-tourney/package.json

30 lines
811 B
JSON
Raw Permalink Normal View History

2018-07-17 16:47:32 -04:00
{
"name": "daily-typing-tourney",
"version": "1.0.0",
"description": "Generates typing tournaments and posts to Slack. Gets results from previous.",
"main": "index.js",
"repository": "https://github.com/empathicqubit/daily-typing-tourney",
"author": "empathicqubit <empathicqubit@allons.me>",
"license": "MIT",
"private": true,
"scripts": {
"debug": "nodemon -- --inspect-brk ./index.js",
2018-07-26 11:34:56 -04:00
"start": "node ./index.js --production",
"lint": "eslint ."
2018-07-17 16:47:32 -04:00
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"geckodriver": "^1.11.0",
"lodash": "^4.17.10",
"node-fetch": "^2.1.2",
"q": "^1.5.1",
"selenium-webdriver": "^4.0.0-alpha.1",
"slack": "^11.0.0",
"yargs": "^12.0.1"
2018-07-17 16:47:32 -04:00
},
"devDependencies": {
2018-07-26 11:34:56 -04:00
"eslint": "^5.2.0",
2018-07-17 16:47:32 -04:00
"nodemon": "^1.18.2"
}
}