-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.07 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
{
"name": "mat-twitter-downloader",
"version": "1.0.0",
"description": "",
"main": "index.js",
"types": "./dist/index.d.ts",
"scripts": {
"create_index": "run-script-os",
"create_index:win32": "echo module.exports = require('./dist'); > index.js",
"create_index:linux:darwin": "echo \"module.exports = require('./dist');\" > index.js",
"build_ts": "./node_modules/.bin/tsc && npm run create_index",
"clear": "run-script-os",
"clear:win32": "(if exist .\\dist rd /s /q .\\dist) && del /q .\\index.js 2>nul",
"clear:linux:darwin": "rm -rf ./dist && rm -f ./index.js",
"clear_docs": "run-script-os",
"clear_docs:win32": "if exist .\\docs rd /s /q .\\docs",
"clear_docs:linux:darwin": "rm -rf ./docs",
"create_nojekyll": "run-script-os",
"create_nojekyll:win32": "type nul > ./docs/.nojekyll",
"create_nojekyll:linux:darwin": "touch ./docs/.nojekyll",
"docs_generate": "./node_modules/.bin/typedoc --out docs ./src",
"docs": "npm run clear_docs && npm run docs_generate && npm run create_nojekyll",
"test": "./node_modules/.bin/mocha -r ts-node/register -r dotenv/config __tests__/**/*.ts",
"start": "npm run clear && npm run build_ts && node -r source-map-support/register -r dotenv/config index.js",
"prepublish": "npm run clear && npm run build_ts",
"postpublish": "npm run clear"
},
"author": "Lukas Macuda <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12"
},
"dependencies": {
"better-queue": "^3.8.10",
"config": "^3.3.7",
"csv-parser": "^3.0.0",
"lodash": "^4.17.21",
"mat-utils": "^0.2.1",
"readline": "^1.3.0",
"redis": "^4.0.4",
"twitter-api-v2": "^1.11.2"
},
"devDependencies": {
"@types/better-queue": "^3.8.3",
"@types/chai": "^4.3.0",
"@types/config": "0.0.41",
"@types/core-js": "^2.5.5",
"@types/lodash": "^4.14.180",
"@types/mocha": "^9.1.0",
"@types/node": "^14.18.12",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"mocha": "^9.2.2",
"run-script-os-fix": "^1.0.4",
"source-map-support": "^0.5.21",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"typedoc": "^0.22.13",
"typescript": "^4.6.2"
}
}