forked from dweinstein/node-google-play-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 997 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 997 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
35
36
37
38
39
40
41
42
43
44
{
"name": "google-play-cli",
"version": "1.0.7",
"description": "use google play mobile app APIs via CLI",
"main": "index.js",
"bin": {
"gp-details": "bin/details",
"gp-download": "bin/download",
"gp-bulk-details": "bin/bulkDetails",
"gp-download-info": "bin/downloadInfo",
"gp-get-sha1": "bin/getSha1",
"gp-search": "bin/search"
},
"scripts": {
"test": "tape test/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dweinstein/node-google-play-cli.git"
},
"keywords": [
"google",
"play",
"store",
"cli",
"download",
"apk",
"details",
"bulk"
],
"author": "dweinstein",
"license": "MIT",
"bugs": {
"url": "https://github.com/dweinstein/node-google-play-cli/issues"
},
"homepage": "https://github.com/dweinstein/node-google-play-cli",
"dependencies": {
"minimist": "^1.1.1",
"node-googleplay-api": "^1.1.10"
},
"devDependencies": {
"tape": "^4.0.0"
}
}