forked from facundoolano/google-play-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.27 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
{
"name": "google-play-scraper",
"version": "8.0.5",
"description": "scrapes app data from google play store",
"main": "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": "^0.22.0",
"debug": "^2.2.0",
"eslint": "^5.16.0",
"memoizee": "^0.4.11",
"ramda": "^0.21.0",
"request": "^2.88.0",
"throttled-request": "^0.1.1"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint-config-semistandard": "^13.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^4.2.5",
"mocha": "^5.2.0",
"promise-log": "^0.1.0",
"validator": "^5.2.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
}
}