-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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
{
"name": "selector-hound",
"version": "2.3.0",
"description": "Find an element that matches a particular CSS selector on a website ",
"type": "module",
"keywords": [
"CSS",
"selector",
"dom",
"utility",
"crawler"
],
"main": "cli.js",
"bin": {
"SelectorHound": "./cli.js"
},
"scripts": {
"lint": "eslint -f table src/**/*.js test/**/*.js cli.js",
"lint:fix": "eslint --fix src/**/*.js test/**/*.js cli.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"repository": {
"type": "git",
"url": "https://github.com/paceaux/selector-finder.git"
},
"author": {
"name": "Frank M. Taylor",
"email": "[email protected]",
"url": "https://blog.frankmtaylor.com"
},
"engines": {
"node": ">=20.16.0",
"npm": ">=10.8.0"
},
"bugs": "https://github.com/paceaux/selector-finder/issues",
"license": "MIT",
"dependencies": {
"axios": "^1.6.8",
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"cheerio": "^1.0.0",
"cssom": "^0.5.0",
"outdated": "^0.1.1",
"puppeteer": "^23.1.1",
"xml2js": "^0.6.2",
"yargs": "^17.5.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-formatter-table": "^7.32.1",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-puppeteer": "^10.0.1",
"mkdirp": "^3.0.1",
"rimraf": "^6.0.1"
}
}