-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.15 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "webparsy",
"version": "0.8.4",
"description": "WebParsy is a NodeJS library which allows to scrape and interact with websites using Puppeteer and YAML definitions",
"main": "index.js",
"keywords": [
"cli-app",
"cli",
"web",
"puppeteer",
"cheerio",
"scraper",
"scraping",
"chrome",
"web scraping",
"web scraper"
],
"scripts": {
"test": "mocha --exit"
},
"bin": {
"webparsy": "cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joseconstela/webparsy.git"
},
"author": {
"name": "Jose Constela",
"url": "https://joseconstela.com"
},
"engines": {
"node": ">=8"
},
"license": "MIT",
"homepage": "https://github.com/joseconstela/webparsy",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"debug": "^4.1.1",
"got": "^9.6.0",
"puppeteer": "2.0.0",
"puppeteer-core": "^2.1.1",
"yaml": "^1.7.2"
},
"devDependencies": {
"chai": "^4.2.0",
"create-test-server": "^3.0.1",
"mocha": "^7.0.1"
},
"bugs": {
"url": "https://github.com/joseconstela/webparsy/issues"
},
"directories": {
"test": "test"
}
}