-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.6 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
57
58
{
"name": "spidex",
"version": "3.0.1",
"description": "A web crawler for node.js, even support hessian request.",
"main": "lib/index.js",
"files": [
"lib"
],
"dependencies": {
"eventemitter3": "^5.0.1",
"hessian.js": "^2.11.0",
"https-browserify": "^1.0.0",
"iconv-lite": "^0.6.3",
"lodash": "^4.17.21",
"stream-http": "^3.2.0",
"urlencode": "^2.0.0"
},
"devDependencies": {
"@types/lodash": "^4.17.10",
"@types/long": "^4.0.2",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.5",
"@types/should": "^13.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.57.1",
"eslint-config-egg": "^14.0.0",
"eslint-plugin-import": "^2.31.0",
"image-type": "^4.0.0",
"long": "^5.2.3",
"mocha": "^10.7.3",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"should": "^13.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"scripts": {
"test": "nyc --reporter=lcov --reporter=text-summary mocha -r ts-node/register 'test/**/*.test.ts'",
"coverage": "nyc --reporter=lcov --reporter=html mocha -r ts-node/register 'test/**/*.test.ts'",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"build": "tsc -p tsconfig.build.json",
"generate-supported-charsets": "node tools/generate_supported_charsets.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/XadillaX/spidex.git"
},
"keywords": [
"clawler",
"hessian"
],
"author": "XadillaX <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/XadillaX/spidex/issues"
}
}