@the-convocation/twitter-scraper 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/.commitlintrc +0 -5
- package/.eslintcache +0 -1
- package/.eslintrc.js +0 -24
- package/.gitattributes +0 -78
- package/.prettierignore +0 -2
- package/.prettierrc +0 -5
package/package.json
CHANGED
package/.commitlintrc
DELETED
package/.eslintcache
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
[{"D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\gh-pages.js":"1","D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\src\\api.ts":"2","D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\src\\auth.ts":"3","D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\src\\profile.ts":"4","D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\src\\scraper.ts":"5","D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\src\\search.ts":"6","D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\src\\timeline.ts":"7","D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\src\\trends.ts":"8","D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\src\\tweets.ts":"9","D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\src\\search.test.ts":"10","D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\src\\trends.test.ts":"11"},{"size":214,"mtime":1653244686068,"results":"12","hashOfConfig":"13"},{"size":2684,"mtime":1653242281934,"results":"14","hashOfConfig":"13"},{"size":3541,"mtime":1653242491067,"results":"15","hashOfConfig":"13"},{"size":4052,"mtime":1653242369416,"results":"16","hashOfConfig":"13"},{"size":6508,"mtime":1653242879269,"results":"17","hashOfConfig":"13"},{"size":2948,"mtime":1653242319801,"results":"18","hashOfConfig":"13"},{"size":10820,"mtime":1653242429993,"results":"19","hashOfConfig":"13"},{"size":1490,"mtime":1653241871443,"results":"20","hashOfConfig":"13"},{"size":2819,"mtime":1653242343249,"results":"21","hashOfConfig":"13"},{"size":1802,"mtime":1653243993888,"results":"22","hashOfConfig":"13"},{"size":259,"mtime":1653244015428,"results":"23","hashOfConfig":"13"},{"filePath":"24","messages":"25","suppressedMessages":"26","errorCount":1,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},"iisw30",{"filePath":"27","messages":"28","suppressedMessages":"29","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"30","messages":"31","suppressedMessages":"32","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"33","messages":"34","suppressedMessages":"35","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"36","messages":"37","suppressedMessages":"38","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"39","messages":"40","suppressedMessages":"41","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"42","messages":"43","suppressedMessages":"44","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"45","messages":"46","suppressedMessages":"47","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"48","messages":"49","suppressedMessages":"50","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"51","messages":"52","suppressedMessages":"53","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"54","messages":"55","suppressedMessages":"56","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\gh-pages.js",["57"],[],"D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\src\\api.ts",[],[],"D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\src\\auth.ts",[],[],"D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\src\\profile.ts",[],[],"D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\src\\scraper.ts",[],[],"D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\src\\search.ts",[],[],"D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\src\\timeline.ts",[],[],"D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\src\\trends.ts",[],[],"D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\src\\tweets.ts",[],[],"D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\src\\search.test.ts",[],[],"D:\\Users\\luca\\Documents\\GitHub\\twitter-scraper\\src\\trends.test.ts",[],[],{"ruleId":"58","severity":2,"message":"59","line":1,"column":17,"nodeType":"60","messageId":"61","endLine":1,"endColumn":36},"@typescript-eslint/no-var-requires","Require statement not part of import statement.","CallExpression","noVarReqs"]
|
package/.eslintrc.js
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
parser: '@typescript-eslint/parser',
|
|
3
|
-
parserOptions: {
|
|
4
|
-
tsconfigRootDir: __dirname,
|
|
5
|
-
sourceType: 'module',
|
|
6
|
-
},
|
|
7
|
-
plugins: ['@typescript-eslint/eslint-plugin'],
|
|
8
|
-
extends: [
|
|
9
|
-
'plugin:@typescript-eslint/recommended',
|
|
10
|
-
'plugin:prettier/recommended',
|
|
11
|
-
],
|
|
12
|
-
root: true,
|
|
13
|
-
env: {
|
|
14
|
-
node: true,
|
|
15
|
-
jest: true,
|
|
16
|
-
},
|
|
17
|
-
ignorePatterns: ['**/*.js'],
|
|
18
|
-
rules: {
|
|
19
|
-
'@typescript-eslint/interface-name-prefix': 'off',
|
|
20
|
-
'@typescript-eslint/explicit-function-return-type': 'off',
|
|
21
|
-
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
|
22
|
-
'@typescript-eslint/no-explicit-any': 'off',
|
|
23
|
-
},
|
|
24
|
-
};
|
package/.gitattributes
DELETED
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
# Auto detect text files and perform LF normalization
|
|
2
|
-
* text=auto
|
|
3
|
-
|
|
4
|
-
#
|
|
5
|
-
# The above will handle all files NOT found below
|
|
6
|
-
#
|
|
7
|
-
|
|
8
|
-
# Code
|
|
9
|
-
*.js text eol=lf
|
|
10
|
-
*.ts text eol=lf
|
|
11
|
-
|
|
12
|
-
# Documents
|
|
13
|
-
*.bibtex text diff=bibtex
|
|
14
|
-
*.doc diff=astextplain
|
|
15
|
-
*.DOC diff=astextplain
|
|
16
|
-
*.docx diff=astextplain
|
|
17
|
-
*.DOCX diff=astextplain
|
|
18
|
-
*.dot diff=astextplain
|
|
19
|
-
*.DOT diff=astextplain
|
|
20
|
-
*.pdf diff=astextplain
|
|
21
|
-
*.PDF diff=astextplain
|
|
22
|
-
*.rtf diff=astextplain
|
|
23
|
-
*.RTF diff=astextplain
|
|
24
|
-
*.md text diff=markdown
|
|
25
|
-
*.mdx text diff=markdown
|
|
26
|
-
*.tex text diff=tex
|
|
27
|
-
*.adoc text
|
|
28
|
-
*.textile text
|
|
29
|
-
*.mustache text
|
|
30
|
-
*.csv text
|
|
31
|
-
*.tab text
|
|
32
|
-
*.tsv text
|
|
33
|
-
*.txt text
|
|
34
|
-
*.sql text
|
|
35
|
-
|
|
36
|
-
# Graphics
|
|
37
|
-
*.png binary
|
|
38
|
-
*.jpg binary
|
|
39
|
-
*.jpeg binary
|
|
40
|
-
*.gif binary
|
|
41
|
-
*.tif binary
|
|
42
|
-
*.tiff binary
|
|
43
|
-
*.ico binary
|
|
44
|
-
*.svg text
|
|
45
|
-
*.eps binary
|
|
46
|
-
|
|
47
|
-
# Scripts
|
|
48
|
-
*.bash text eol=lf
|
|
49
|
-
*.fish text eol=lf
|
|
50
|
-
*.sh text eol=lf
|
|
51
|
-
*.zsh text eol=lf
|
|
52
|
-
*.bat text eol=crlf
|
|
53
|
-
*.cmd text eol=crlf
|
|
54
|
-
*.ps1 text eol=crlf
|
|
55
|
-
|
|
56
|
-
# Serialisation
|
|
57
|
-
*.json text
|
|
58
|
-
*.toml text
|
|
59
|
-
*.xml text
|
|
60
|
-
*.yaml text
|
|
61
|
-
*.yml text
|
|
62
|
-
|
|
63
|
-
# Archives
|
|
64
|
-
*.7z binary
|
|
65
|
-
*.gz binary
|
|
66
|
-
*.tar binary
|
|
67
|
-
*.tgz binary
|
|
68
|
-
*.zip binary
|
|
69
|
-
|
|
70
|
-
# Text files where line endings should be preserved
|
|
71
|
-
*.patch -text
|
|
72
|
-
|
|
73
|
-
#
|
|
74
|
-
# Exclude files from exporting
|
|
75
|
-
#
|
|
76
|
-
|
|
77
|
-
.gitattributes export-ignore
|
|
78
|
-
.gitignore export-ignore
|
package/.prettierignore
DELETED