-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 1.98 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
{
"dependencies": {
"debug": "^4.1.1",
"@caporal/core": "^2.0.2",
"acorn": "^8.11.3",
"acorn-walk": "^8.3.2",
"esprima": "^4.0.1",
"estree-util-to-js": "^2.0.0",
"form-data": "^3.0.0",
"fs-extra": "^8.1.0",
"got": "^10.0.0-alpha.3.2",
"is-path-inside": "^3.0.3",
"js-beautify": "^1.10.3",
"puppeteer": "^2.1.1",
"snoowrap": "^1.20.1",
"source-map": "^0.7.4",
"string-format": "^2.0.0"
},
"name": "reddit-dataminer",
"description": "Dumps Reddit scripts.",
"version": "1.0.0",
"main": "./dist/index.js",
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/esprima": "^4.0.2",
"@types/estree": "^0.0.46",
"@types/estree-jsx": "^1.0.5",
"@types/fs-extra": "^9.0.8",
"@types/js-beautify": "^1.13.1",
"@types/node": "^18.14.6",
"@types/puppeteer": "^5.4.3",
"@types/string-format": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.57.0",
"eslint-config-haykam": "^1.21.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"dev": "ts-node-dev --respawn ./src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"./**/*.ts\" --ignore-path .gitignore"
},
"eslintConfig": {
"extends": [
"eslint-config-haykam",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"rules": {
"no-shadow": "off",
"@typescript-eslint/no-shadow": "error",
"sort-imports": "error",
"jsdoc/require-param-type": "off"
}
},
"keywords": [
"reddit",
"datamining"
],
"author": "haykam821",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Snakeroom/Reddit-Dataminer.git"
},
"bugs": {
"url": "https://github.com/Snakeroom/Reddit-Dataminer/issues"
},
"homepage": "https://github.com/Snakeroom/Reddit-Dataminer#readme"
}