-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.61 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
61
62
63
64
65
{
"name": "webhead",
"version": "1.1.3",
"description": "An easy-to-use Node web crawler storing cookies, following redirects, traversing pages and submitting forms.",
"source": "src/webhead.js",
"main": "dist/webhead.js",
"module": "dist/webhead.module.js",
"unpkg": "dist/webhead.umd.js",
"types": "dist/webhead.d.ts",
"files": [
"dist",
"src/webhead.js"
],
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"example:bing": "node --trace-warnings examples/bing.mjs",
"example:github": "node --trace-warnings examples/github.js",
"example:typicode": "node --trace-warnings examples/typicode.js",
"prepublishOnly": "microbundle",
"prettier": "npx prettier --write .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/archan937/webhead.git"
},
"keywords": [
"spider",
"crawler",
"scraper",
"headless",
"node",
"fetch",
"traversing",
"json",
"cookies",
"redirects",
"forms",
"file uploads",
"api"
],
"author": "Paul Engel",
"license": "MIT",
"bugs": {
"url": "https://github.com/archan937/webhead/issues"
},
"homepage": "https://github.com/archan937/webhead#readme",
"dependencies": {
"@types/cheerio": "^0.22.22",
"cheerio": "^1.0.0-rc.3",
"form-data": "^3.0.0",
"fs-extra": "^9.0.1",
"jquery-param": "^1.1.3",
"node-fetch": "^2.6.1",
"tough-cookie": "^4.0.0"
},
"devDependencies": {
"express": "^4.17.1",
"jest": "^26.6.0",
"microbundle": "^0.12.4",
"prettier": "^2.2.0",
"prompts": "^2.3.2"
}
}