This repository was archived by the owner on Mar 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.09 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.09 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "tai-spider",
"version": "0.1.10",
"description": "Scrapy Framework implemented by nodejs.",
"main": "./index.js",
"directories": {
"bin": "bin",
"lib": "lib",
"test": "test"
},
"bin": {
"taispider": "bin/taispider.js"
},
"scripts": {
"cover": "nyc --reporter=lcovonly --reporter=text --reporter=text-summary mocha --timeout=15000 --reporter spec test/*.test.js",
"build": "babel -d ./lib src",
"eslint": "eslint --fix ./src ./test",
"mocha": "mocha",
"pretest": "npm run build",
"git": "git add . && git commit -m",
"prepublishOnly": "npm run build",
"postgit": "npm version patch && git push --all",
"test": "npm run eslint && npm run mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/wx-rdc/tai-spider.git"
},
"engine-strict": {
"node": ">=12.0.0"
},
"dependencies": {
"bottleneckp": "~1.1.3",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.10",
"commander": "^8.3.0",
"iconv-lite": "^0.4.8",
"lodash": "^4.17.10",
"log4js": "^6.3.0",
"mkdirp": "^1.0.4",
"moment": "^2.29.1",
"request": "~2.88.0",
"require-directory": "^2.1.1",
"seenreq": "^3.0.0",
"seenreq-repo-redis": "^1.0.1",
"set-cookie-parser": "^2.4.8",
"type-is": "^1.6.14",
"unfluff": "^3.2.0",
"url-parse": "^1.5.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"cross-env": "^7.0.3",
"eslint": "^5.0.0",
"jsdoc-to-markdown": "3",
"jsdom": "^9.6.0",
"mocha": "^6.1.0",
"mocha-testdata": "^1.2.0",
"nock": "^13.0.5",
"nyc": "^13.1.0",
"sinon": "^7.0.0"
},
"keywords": [
"javascript",
"crawling",
"spider",
"scrapy",
"crawler",
"nodejs"
],
"author": "Edward Zhu <zhuhy163@163.com>",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/wx-rdc/tai-spider/blob/main/LICENSE"
}
],
"bugs": {
"url": "https://github.com/wx-rdc/tai-spider/issues"
},
"homepage": "https://github.com/wx-rdc/tai-spider"
}