-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.38 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.38 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
{
"name": "webwrangler",
"version": "0.0.2",
"description": "WebWrangler is a NodeJS library which allows to scrape and interact with websites using Puppeteer with YAML (NODE12 Support for Meteor)",
"main": "index.js",
"author": {
"name": "Tyler Thompson",
"email": "tyler@tylerthompson.me",
"url": "https://github.com/TylerThompson"
},
"keywords": [
"cli-app",
"cli",
"web",
"puppeteer",
"cheerio",
"scraper",
"scraping",
"chrome",
"web scraping",
"web scraper"
],
"scripts": {
"test": "mocha --exit",
"preversion": "npm test",
"postversion": "npm publish",
"prepublishOnly": "git push origin --follow-tags"
},
"bin": {
"webwrangler": "cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Thompson-Development-Group/webwrangler.git"
},
"engines": {
"node": ">=10"
},
"license": "MIT",
"homepage": "https://github.com/Thompson-Development-Group/webwrangler",
"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/Thompson-Development-Group/webwrangler/issues"
},
"directories": {
"test": "test"
}
}