ts3bot/package.json

79 lines
2.2 KiB
JSON
Raw Normal View History

{
"name": "ts3bot",
"version": "0.4.0",
"description": "Allows running TeamSpeak3 as a bot for all kinds of media (local music/videos/streams/YouTube/...) without the need for a real GUI to exist.",
"main": "dist/node7/index.js",
2015-11-05 02:02:57 +00:00
"bin": {
"ts3bot": "dist/node7/index.js"
2015-11-05 02:02:57 +00:00
},
"keywords": [
"teamspeak",
"teamspeak3",
"ts3",
"bot",
"ts3bot",
"teamspeak3bot",
"music",
"playback",
"audio",
"video",
"media",
"musicbot"
],
"scripts": {
"iced2es": "iced3 -I none -b --no-header -o src.js -c src && lebab -t let,multi-var,for-each,arg-rest,arg-spread,obj-method,obj-shorthand,no-strict,exponent,template,default-param,includes,class --replace src.js",
2017-05-17 23:24:23 +00:00
"lint": "eslint --fix .",
"es2017-node7": "babel src.js --presets es2017-node7 --source-maps --out-dir ./dist/node7",
"build": "npm run iced2es && npm run es2017-node7",
"prepublish": "npm run build",
"start": "node .",
"start-coffee": "node ./src/index.js"
},
"author": "Carl Kittelberger <icedream@icedream.pw>",
"license": "GPL-3.0+",
"repository": {
"type": "git",
"url": "https://github.com/icedream/ts3bot.git"
},
"dependencies": {
"express": "^4.13.3",
"merge": "^1.2.0",
"mkdirp": "^0.5.1",
"named-regexp": "^0.1.1",
"nconf": "^0.8.4",
"npm-which": "^3.0.1",
"parse-duration": "^0.1.1",
"password-generator": "^2.0.1",
"pretty-ms": "^2.1.0",
"querystring": "^0.2.0",
"request": "^2.61.0",
"simple-ini": "^1.0.3",
"sqlite3": "^3.1.0",
"stream-splitter": "^0.3.2",
"string.prototype.startswith": "^0.2.0",
"sync": "^0.2.5",
"temp": "^0.8.3",
"valid-url": "^1.0.9",
"webchimera.js": "^0.2.7",
"which": "^1.1.2",
"winston": "^2.3.1",
"xvfb": "^0.2.3",
"youtube-dl": "^1.10.5"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2017-node7": "^0.5.2",
2017-05-17 23:24:23 +00:00
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.1",
"iced-coffee-script-3": "^111.1.1",
"lebab": "^2.7.2"
},
"engineStrict": true,
"engines": {
"node": ">= 7.6.0"
}
}