twitter-tipbot/package.json

46 lines
1.2 KiB
JSON
Raw Normal View History

2017-03-15 15:52:22 +01:00
{
"name": "node-tip-bot-twitter",
2018-04-13 20:22:19 +02:00
"version": "1.0.2",
2017-03-15 15:52:22 +01:00
"description": "node.js based tipping bot for any coin",
"main": "bin/tipbot",
"dependencies": {
2018-04-13 20:27:05 +02:00
"express": "^3.21.2",
"js-yaml": "^3.11.0",
"node-gameunits": "^0.3.5",
"twitter": "^1.7.1",
"winston": "^0.7.2"
2017-03-15 15:52:22 +01:00
},
2018-04-13 20:22:19 +02:00
"devDependencies": {
2018-04-13 20:27:05 +02:00
"prettier": "^1.12.0"
2018-04-13 20:22:19 +02:00
},
2017-03-15 15:52:22 +01:00
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
2018-04-13 20:22:19 +02:00
"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"
2017-03-15 15:52:22 +01:00
},
"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",
2018-04-13 20:43:12 +02:00
"keywords": [
"gameunits",
"bitcoin",
"litecoin",
"altcoin",
"tip",
"tipbot",
"irc",
"bot"
]
2017-03-15 15:52:22 +01:00
}