forked from sogebot/sogeBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.69 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "sogebot",
"version": "6.1.0-SNAPSHOT",
"description": "Free Twitch Bot built on Node.js",
"private": true,
"main": "main.js",
"author": "Michal Orlik <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=7.0"
},
"dependencies": {
"async-request": "^1.2.0",
"auto-load": "^3.0.0",
"basic-auth": "^2.0.0",
"bootstrap": "^4.0.0",
"bootstrap-menu": "^1.0.14",
"bootstrap-slider": "^10.0.0",
"bootstrap-toggle": "^2.2.2",
"chalk": "^2.3.1",
"chart.js": "^2.7.1",
"compare-versions": "^3.1.0",
"cross-env": "^5.1.3",
"debug": "^3.1.0",
"decode-html": "^2.0.0",
"express": "^4.16.2",
"figlet": "^1.2.0",
"flat": "^4.0.0",
"flv.js": "^1.4.0",
"glob": "^7.1.2",
"jquery": "^3.3.1",
"lodash": "^4.17.5",
"mathjs": "^3.20.2",
"moment": "^2.20.1",
"moment-precise-range-plugin": "^1.3.0",
"mongodb": "^3.0.2",
"mongodb-uri": "^0.9.7",
"nedb": "^1.8.0",
"nedb-promise": "^2.0.1",
"node-hue-api": "^2.4.2",
"node-sass": "^4.7.2",
"npm-run-all": "^4.1.2",
"popper.js": "^1.12.9",
"request": "^2.83.0",
"safe-eval": "^0.3.0",
"snekfetch": "3.6.4",
"socket.io": "^2.0.4",
"terminal-kit": "^1.14.3",
"twitch-emoticons": "git+https://github.com/sogehige/twitch-emoticons.git#v3api",
"twitch-js": "1.2.10",
"twitter": "^1.7.1",
"velocity-animate": "^1.5.1",
"winston": "^2.4.0",
"xregexp": "4.0.0",
"youtube-search": "^1.0.10",
"ytdl-core": "^0.20.1"
},
"scripts": {
"prebuild": "npm install rimraf bestzip npm-run-all cross-var -g",
"build": "npm-run-all --sequential cleanup:* build:modules build:shrinkwrap test build:zip",
"build:css": "npm-run-all --parallel compile:css:*",
"build:modules": "npm install",
"build:shrinkwrap": "npm shrinkwrap",
"build:zip": "cross-var bestzip sogeBot-$npm_package_version.zip npm-shrinkwrap.json config.example.json libs/ locales/ main.js public/ LICENSE package.json README.md AUTHORS tools/ bin/ bat/ scss/",
"compile:css:light": "node-sass --output-style expanded --precision 6 scss/themes/light.scss public/dist/css/light.css",
"compile:css:dark": "node-sass --output-style expanded --precision 6 scss/themes/dark.scss public/dist/css/dark.css",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"standard": "standard main.js && standard test/* && standard libs/* && standard libs/systems/* && standard libs/overlays/* && standard libs/widgets/*",
"test": "mocha --recursive --timeout 20000 --exit",
"test:config:mongodb": "cp config.example.json config.json && sed -i -- 's/nedb/mongodb/g' config.json",
"test:config:nedb": "cp config.example.json config.json",
"start": "node ./tools/migrate && npm-run-all --parallel build:css copy:dist && cross-env NODE_ENV=production node ./main || true",
"start-no-migration": "npm run copy:dist && node ./main || true",
"debug": "npm run copy:dist && node --inspect ./main || true",
"cleanup": "node ./tools/cleanup.js || true",
"cleanup:dist": "rimraf public/dist/bootstrap* public/dist/carousel/* public/dist/gallery/* public/dist/jquery public/dist/lodash public/dist/velocity-animate public/dist/popper.js public/dist/flv.js public/dist/css/dark.css public/dist/css/light.css",
"cleanup:modules": "rimraf node_modules/",
"cleanup:shrinkwrap": "rimraf npm-shrinkwrap.json",
"copy:dist": "node tools/copy-dist-files.js"
},
"pre-commit": [
"precommit-msg",
"standard"
],
"devDependencies": {
"chai": "^4.1.2",
"locate-path": "^2.0.0",
"mocha": "5.0.1",
"pre-commit": "^1.2.2",
"sinon": "^4.3.0",
"standard": "^11.0.0",
"test-until": "^1.1.1"
}
}