forked from facundoolano/google-play-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.16 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
{
"name": "google-play-scraper",
"version": "10.0.0",
"description": "scrapes app data from google play store",
"type": "module",
"exports": "./index.js",
"scripts": {
"test": "mocha --timeout 5000",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/facundoolano/google-play-scraper"
},
"keywords": [
"google",
"play",
"scraper"
],
"author": "Facundo Olano",
"license": "MIT",
"bugs": {
"url": "https://github.com/facundoolano/google-play-scraper/issues"
},
"homepage": "https://github.com/facundoolano/google-play-scraper",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"debug": "^3.1.0",
"got": "^11.8.6",
"memoizee": "^0.4.14",
"ramda": "^0.29.0"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.46.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0",
"mocha": "^10.2.0",
"promise-log": "^0.1.0",
"sinon": "^15.2.0",
"validator": "^13.9.0"
}
}