forked from janez87/TwitterScraper
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 771 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 771 Bytes
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
{
"name": "twitter-scraper",
"version": "5.1.0",
"description": "Twitter scraper",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Volox/TwitterScraper"
},
"bugs": {
"url": "https://github.com/Volox/TwitterScraper/issues"
},
"homepage": "https://github.com/Volox/TwitterScraper#readme",
"scripts": {
"build": "tslint src/* && tsc",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "mocha"
},
"dependencies": {
"cheerio": "0.19.x",
"debug": "2.x",
"request": "2.x"
},
"typings": "lib/index",
"author": "Volox",
"license": "MIT",
"devDependencies": {
"chai": "3.x",
"mocha": "2.x",
"tslint": "3.x",
"typescript": "1.x"
}
}