-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 737 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 737 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
{
"name": "metamorph-demo-actor",
"version": "1.0",
"type": "module",
"description": "Demonstrates Apify Actor metamorph operation.",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"apify": "^3.4.2"
},
"scripts": {
"start": "node ./src/main.js",
"test": "echo \"Error: oops, the Actor has no tests yet, sad!\" && exit 1"
},
"keywords": [
"apify",
"metamorph",
"demo",
"web-scraping"
],
"author": "@DZ_45Omar",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/DZ-ABDLHAKIM/metamorph-orchestrator"
},
"files": [
"src/**/*",
".actor/actor.json",
".actor/input_schema.json",
"README.md"
]
}