apify-cli 0.14.1-beta.0 → 0.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +104 -104
package/package.json
CHANGED
|
@@ -1,107 +1,107 @@
|
|
|
1
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
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
2
|
+
"name": "apify-cli",
|
|
3
|
+
"version": "0.14.1",
|
|
4
|
+
"description": "Apify command-line interface helps you create, develop, build and run Apify actors, and manage the Apify cloud platform.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "mocha --timeout 180000 --recursive",
|
|
8
|
+
"lint": "eslint src test",
|
|
9
|
+
"lint:fix": "eslint src test --fix",
|
|
10
|
+
"commands-md": "npm run manifest && oclif-dev readme",
|
|
11
|
+
"prepare-release": "npm run manifest && npm run commands-md && npm run prod-shrinkwrap",
|
|
12
|
+
"prod-shrinkwrap": "rm -rf node_modules && npm install --production && npm shrinkwrap",
|
|
13
|
+
"manifest": "rm -f oclif.manifest.json && oclif-dev manifest",
|
|
14
|
+
"postinstall": "node \"./src/bin/run\" check-version"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"src",
|
|
18
|
+
"oclif.manifest.json",
|
|
19
|
+
"index.js",
|
|
20
|
+
"package.json"
|
|
21
|
+
],
|
|
22
|
+
"bin": {
|
|
23
|
+
"apify": "./src/bin/run"
|
|
24
|
+
},
|
|
25
|
+
"contributors": [
|
|
26
|
+
"Jakub Drobník <jakub.drobnik@apify.com>",
|
|
27
|
+
"Jan Curn <jan@apify.com>"
|
|
28
|
+
],
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "git+https://github.com/apify/apify-cli.git"
|
|
32
|
+
},
|
|
33
|
+
"keywords": [
|
|
34
|
+
"apify",
|
|
35
|
+
"client",
|
|
36
|
+
"node",
|
|
37
|
+
"command",
|
|
38
|
+
"line",
|
|
39
|
+
"bash"
|
|
40
|
+
],
|
|
41
|
+
"author": {
|
|
42
|
+
"name": "Apify",
|
|
43
|
+
"email": "support@apify.com",
|
|
44
|
+
"url": "https://www.apify.com"
|
|
45
|
+
},
|
|
46
|
+
"license": "Apache-2.0",
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://github.com/apify/apify-cli/issues"
|
|
49
|
+
},
|
|
50
|
+
"homepage": "https://github.com/apify/apify-cli#readme",
|
|
51
|
+
"engines": {
|
|
52
|
+
"node": ">=16.0.0"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"@apify/actor-templates": "^0.1.3",
|
|
56
|
+
"@apify/consts": "^2.7.0",
|
|
57
|
+
"@apify/input_schema": "^3.3.0",
|
|
58
|
+
"@apify/utilities": "^2.2.3",
|
|
59
|
+
"@crawlee/memory-storage": "^3.0.3",
|
|
60
|
+
"@oclif/command": "^1.8.16",
|
|
61
|
+
"@oclif/config": "^1.18.3",
|
|
62
|
+
"@oclif/errors": "^1.3.5",
|
|
63
|
+
"@oclif/plugin-commands": "^2.1.0",
|
|
64
|
+
"@oclif/plugin-help": "^5.1.12",
|
|
65
|
+
"ajv": "^8.10.0",
|
|
66
|
+
"apify-client": "^2.2.0",
|
|
67
|
+
"archiver-promise": "^1.0.0",
|
|
68
|
+
"chalk": "^4.1.2",
|
|
69
|
+
"cors": "^2.8.5",
|
|
70
|
+
"cross-spawn": "^7.0.3",
|
|
71
|
+
"detect-indent": "^6.1.0",
|
|
72
|
+
"express": "^4.18.2",
|
|
73
|
+
"globby": "^11.1.0",
|
|
74
|
+
"got-scraping": "^3.2.9",
|
|
75
|
+
"inquirer": "^7.3.3",
|
|
76
|
+
"is-online": "^10.0.0",
|
|
77
|
+
"istextorbinary": "^6.0.0",
|
|
78
|
+
"load-json-file": "^6.2.0",
|
|
79
|
+
"mime": "^2.6.0",
|
|
80
|
+
"open": "^8.4.0",
|
|
81
|
+
"ow": "^0.28.1",
|
|
82
|
+
"rimraf": "^3.0.2",
|
|
83
|
+
"semver": "^7.3.5",
|
|
84
|
+
"underscore": "^1.13.2",
|
|
85
|
+
"unzipper": "^0.10.11",
|
|
86
|
+
"write-json-file": "^4.3.0"
|
|
87
|
+
},
|
|
88
|
+
"devDependencies": {
|
|
89
|
+
"@apify/eslint-config": "^0.2.3",
|
|
90
|
+
"@oclif/dev-cli": "^1.26.0",
|
|
91
|
+
"@oclif/test": "^2.1.0",
|
|
92
|
+
"chai": "^4.3.4",
|
|
93
|
+
"chai-match": "^1.1.1",
|
|
94
|
+
"eslint": "^8.11.0",
|
|
95
|
+
"mocha": "^10.0.0",
|
|
96
|
+
"sinon": "^9.2.4"
|
|
97
|
+
},
|
|
98
|
+
"oclif": {
|
|
99
|
+
"bin": "apify",
|
|
100
|
+
"commands": "./src/commands",
|
|
101
|
+
"hooks": {
|
|
102
|
+
"init": [
|
|
103
|
+
"./src/hooks/init"
|
|
104
|
+
]
|
|
105
|
+
}
|
|
105
106
|
}
|
|
106
|
-
}
|
|
107
107
|
}
|