forked from sogebot/sogeBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.37 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "sogebot",
"version": "5.7.2",
"description": "Free Twitch Bot built on Node.js",
"private": true,
"main": "SogeBot",
"author": "Michal Orlik <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=7.0"
},
"dependencies": {
"async-request": "^1.2.0",
"auto-load": "^3.0.0",
"basic-auth": "^1.1.0",
"bootstrap": "^3.3.7",
"bootstrap-menu": "^1.0.14",
"bootstrap-slider": "^9.8.1",
"bootstrap-toggle": "^2.2.2",
"chalk": "^2.1.0",
"death": "^1.1.0",
"express": "^4.15.4",
"glob": "^7.1.2",
"ini": "^1.3.4",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"mathjs": "^3.16.2",
"moment": "^2.18.1",
"moment-precise-range-plugin": "^1.2.4",
"nedb": "^1.8.0",
"nedb-promise": "^2.0.1",
"node-hue-api": "^2.4.2",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"socket.io": "^2.0.3",
"tmi.js": "^1.2.1",
"twitch-emoticons": "^2.1.0",
"twitter": "^1.7.1",
"velocity-animate": "^1.5.0",
"winston": "^2.3.1",
"youtube-search": "^1.0.10",
"ytdl-core": "^0.17.0"
},
"scripts": {
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"standard": "standard main.js && standard libs/* && standard libs/systems/* && standard libs/overlays/* && standard libs/widgets/*",
"build-zip": "npm run cleanup:dist; rm -rf node_modules; rm npm-shrinkwrap.json; npm install; npm shrinkwrap; echo Removing sogeBot-$npm_package_version.zip; rm sogeBot-$npm_package_version.zip; echo Creating new sogeBot-$npm_package_version.zip; zip -qr sogeBot-$npm_package_version.zip npm-shrinkwrap.json config.ini libs/ locales/ main.js public/ launch.sh LICENSE migrate.js package.json README.md tools/",
"test": "npm run standard && mocha",
"migrate": "node ./migrate",
"cleanup": "node ./tools/cleanup",
"start": "npm run copy:dist && node ./main || true",
"debug": "npm run copy:dist && node --inspect ./main || true",
"cleanup:dist": "rm -rf ./public/dist/bootstrap* ./public/dist/carousel/* ./public/dist/gallery/* ./public/dist/jquery ./public/dist/lodash ./public/dist/velocity-animate",
"copy:dist": "node tools/copy-dist-files.js"
},
"pre-commit": [
"precommit-msg",
"standard"
],
"devDependencies": {
"chai": "^4.1.1",
"locate-path": "^2.0.0",
"mocha": "^3.5.0",
"pre-commit": "^1.2.2",
"standard": "^10.0.3"
}
}