-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
102 lines (102 loc) · 2.17 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "mechanize",
"version": "1.5.0",
"description": "Automate interaction with websites (web scraping)",
"keywords": [
"dom",
"scraper",
"javascript"
],
"homepage": "https://github.com/srveit/mechanize-js/wiki",
"repository": {
"type": "git",
"url": "[email protected]:srveit/mechanize-js.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/srveit/mechanize-js/issues"
},
"license": "MIT",
"author": {
"name": "Stephen R. Veit",
"email": "[email protected]",
"url": "http://veitconsulting.com"
},
"contributors": [
{
"name": "佐藤"
},
{
"name": "Dan Rahmel"
},
{
"name": "Anders Hjelm"
}
],
"main": "./lib/mechanize.js",
"bin": {},
"man": [],
"directories": {
"lib": "./lib/mechanize"
},
"config": {},
"scripts": {
"coverage": "vitest run --coverage",
"docs": "jsdoc --configure .jsdocrc.json",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"lint-markdown": "markdownlint-cli2 \"**/*.md\" \"#node_modules\"",
"test": "vitest"
},
"watch": {
"lint": {
"patterns": [
"{lib,spec}/*.js"
],
"quiet": true
}
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"coverageProvider": "v8",
"coverageDirectory": "./coverage/",
"coverageReporters": [
"clover",
"json",
"html",
"text-summary"
],
"coverageThreshold": {
"global": {
"lines": 75
}
}
},
"dependencies": {
"jsdom": "^24.1.0",
"mime": "^4.0.3",
"node-fetch": "^3.3.2",
"tough-cookie": "^4.1.4",
"unescape": "^1.0.1",
"windows-1252": "^3.0.4"
},
"type": "module",
"overrides": {},
"engines": {
"node": ">= 18.0.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.1.0",
"@vitest/coverage-v8": "^1.6.0",
"ajv": "^8.16.0",
"ajv-keywords": "^5.1.0",
"eslint": "^8.57.0",
"eslint-plugin-jsonc": "^2.16.0",
"express": "^4.19.2",
"jsdoc": "^4.0.3",
"markdownlint-cli2": "^0.13.0",
"prettier": "^3.3.1",
"vitest": "^1.6.0"
}
}