-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
26 lines (26 loc) · 895 Bytes
/
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
{
"name": "apify-act-send-crawler-results",
"version": "1.0.0",
"description": "This act downloads results from Apify crawler and send them to email as attachments. It is designed to run from [crawler finish webhook](https://www.apify.com/docs#crawler-finishWebhookUrl).",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drobnikj/apify-act-send-crawler-results.git"
},
"author": "Jakub Drobnik",
"license": "ISC",
"bugs": {
"url": "https://github.com/drobnikj/apify-act-send-crawler-results/issues"
},
"homepage": "https://github.com/drobnikj/apify-act-send-crawler-results#readme",
"dependencies": {
"apify": "^0.15.5",
"handlebars": "^4.3.3",
"request-promise": "^4.2.4",
"type-check": "^0.3.2"
}
}