-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
91 lines (91 loc) · 2.33 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@gonetone/google-play-api",
"version": "1.3.1",
"description": "Access Google Play by logging in and making requests as an Android device!",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"dist",
"proto",
"docs",
"README*.md"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src/*.ts",
"lint:fix": "eslint src/*.ts --fix",
"proto:generate_dts": "pbjs -t static-module -w commonjs -o proto/google_play.js proto/google_play.proto && pbts -o proto/google_play.d.ts proto/google_play.js"
},
"repository": {
"type": "git",
"url": "https://github.com/GoneToneStudio/node-google-play-api.git"
},
"keywords": [
"google play",
"play store",
"play",
"google play api",
"play store api",
"google play store api",
"api",
"google play crawler",
"play store crawler",
"google play store crawler",
"crawler",
"google"
],
"author": {
"name": "張文相 Wenxiang Zhang (旋風之音 GoneTone)",
"email": "[email protected]",
"url": "https://github.com/GoneTone"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/GoneToneStudio/node-google-play-api/issues"
},
"homepage": "https://github.com/GoneToneStudio/node-google-play-api",
"devDependencies": {
"@types/bytebuffer": "^5.0.43",
"@types/ini": "^1.3.31",
"@types/jest": "^27.5.1",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.36",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"dotenv": "^10.0.0",
"eslint": "^8.16.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.0",
"protobufjs-cli": "~1.0.0",
"ts-jest": "^28.0.3",
"typescript": "^4.7.2"
},
"dependencies": {
"axios": "^0.21.1",
"ini": "^2.0.0",
"lodash": "^4.17.21",
"protobufjs": "~7.0.0",
"qs": "^6.10.1",
"tslib": "^2.4.0"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
}
}