-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "actor-youtube-scraper",
"version": "0.0.1",
"description": "Actor to scrape youtube videos",
"keywords": [
"apify",
"apifier",
"crawler",
"search",
"youtube",
"pupetteer"
],
"dependencies": {
"apify": "^2.3.0",
"moment": "^2.29.1",
"node-fetch": "^2.6.1",
"puppeteer": "*"
},
"devDependencies": {
"@apify/eslint-config": "^0.1.4",
"@types/puppeteer": "^5.4.2",
"chai": "^4.2.0",
"eslint": "7.17.0",
"mocha": "^8.2.1",
"sinon": "^9.2.3"
},
"scripts": {
"start": "node src/main.js",
"test": "mocha test/utility_spec.js",
"apify": "apify run"
},
"author": "[email protected]",
"contributors": [
"Bernard Okoth <[email protected]>"
],
"license": "Apache-2.0",
"homepage": "https://github.com/bernardro/actor-youtube-scraper",
"repository": {
"type": "git",
"url": "git+https://github.com/bernardro/actor-youtube-scraper"
},
"bugs": {
"url": "https://github.com/bernardro/actor-youtube-scraper/issues"
}
}