forked from apify/apify-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.51 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.51 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "apify-cli",
"version": "0.19.2",
"description": "Apify command-line interface helps you create, develop, build and run Apify actors, and manage the Apify cloud platform.",
"main": "index.js",
"scripts": {
"test": "cross-env APIFY_CLI_SKIP_UPDATE_CHECK=1 mocha --timeout 180000 --recursive",
"test-python": "npm run test -- --grep '\\[python\\]'",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"commands-md": "npm run manifest && oclif-dev readme",
"prepare-release": "npm run commands-md && npm run prod-shrinkwrap",
"prod-shrinkwrap": "rm -rf node_modules && npm install --production && npm shrinkwrap",
"manifest": "rm -f oclif.manifest.json && oclif-dev manifest",
"postinstall": "node \"./src/bin/run\" check-version && node ./src/lib/community"
},
"files": [
"src",
"oclif.manifest.json",
"index.js",
"package.json"
],
"bin": {
"apify": "./src/bin/run"
},
"contributors": [
"Jakub Drobník <jakub.drobnik@apify.com>",
"Jan Curn <jan@apify.com>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/apify/apify-cli.git"
},
"keywords": [
"apify",
"client",
"node",
"command",
"line",
"bash"
],
"author": {
"name": "Apify",
"email": "support@apify.com",
"url": "https://www.apify.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/apify/apify-cli/issues"
},
"homepage": "https://github.com/apify/apify-cli#readme",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@apify/actor-templates": "^0.1.4",
"@apify/consts": "^2.23.0",
"@apify/input_schema": "^3.5.8",
"@apify/utilities": "^2.9.3",
"@crawlee/memory-storage": "^3.5.8",
"@oclif/command": "^1.8.36",
"@oclif/config": "^1.18.17",
"@oclif/errors": "^1.3.6",
"@oclif/plugin-commands": "^2.1.0",
"@oclif/plugin-help": "^5.1.12",
"@root/walk": "^1.1.0",
"adm-zip": "^0.5.10",
"ajv": "^8.12.0",
"apify-client": "^2.8.2",
"archiver-promise": "^1.0.0",
"axios": "^1.6.1",
"chalk": "^4.1.2",
"computer-name": "^0.1.0",
"configparser": "^0.3.10",
"cors": "^2.8.5",
"detect-indent": "^6.1.0",
"escape-string-regexp": "^4.0.0",
"express": "^4.18.2",
"globby": "^11.1.0",
"handlebars": "^4.7.8",
"inquirer": "^7.3.3",
"is-ci": "^3.0.1",
"is-online": "^10.0.0",
"istextorbinary": "^8.0.0",
"jju": "^1.4.0",
"load-json-file": "^6.2.0",
"mime": "^3.0.0",
"mixpanel": "^0.18.0",
"open": "^8.4.0",
"ow": "^0.28.2",
"rimraf": "^3.0.2",
"semver": "^7.5.4",
"tiged": "^2.12.5",
"underscore": "^1.13.6",
"write-json-file": "^4.3.0"
},
"devDependencies": {
"@apify/eslint-config": "^0.4.0",
"@oclif/dev-cli": "^1.26.0",
"@oclif/test": "^2.1.0",
"chai": "^4.3.4",
"chai-match": "^1.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.53.0",
"mocha": "^10.0.0",
"sinon": "^17.0.0"
},
"oclif": {
"bin": "apify",
"commands": "./src/commands",
"hooks": {
"init": [
"./src/hooks/init"
]
}
}
}