twitter-tipbot/package.json
Niko Storni b320075799
remove webadmin
update dependencies
2018-04-13 14:43:16 -04:00

46 lines
1.2 KiB
JSON

{
"name": "node-tip-bot-twitter",
"version": "1.0.2",
"description": "node.js based tipping bot for any coin",
"main": "bin/tipbot",
"dependencies": {
"express": "^3.21.2",
"js-yaml": "^3.11.0",
"node-gameunits": "^0.3.5",
"twitter": "^1.7.1",
"winston": "^0.7.2"
},
"devDependencies": {
"prettier": "^1.12.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node bin/tipbot",
"prettier": "prettier --write \"{bot,.}/**/*.{js,json}\" --single-quote --print-width 240",
"build": "babel bot -d dist",
"prod": "babel bot -d dist & node dist/bot.js",
"lint": "prettier --write \"{bot,.}/**/*.{js,json}\" --single-quote --print-width 240",
"precommit": "prettier --write \"{bot,.}/**/*.{js,json}\" --single-quote --print-width 240"
},
"repository": {
"type": "git",
"url": "http://github.com/gameunits/node-tip-bot"
},
"author": "gameunits",
"license": "MIT",
"bugs": {
"url": "https://github.com/gameunits/node-tip-bot/issues"
},
"homepage": "https://github.com/gameunits/node-tip-bot",
"keywords": [
"gameunits",
"bitcoin",
"litecoin",
"altcoin",
"tip",
"tipbot",
"irc",
"bot"
]
}