-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
78 lines (78 loc) · 2.57 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
{
"name": "html-snapshots",
"version": "4.16.1",
"author": {
"name": "Alex Grant",
"email": "[email protected]",
"url": "https://www.localnerve.com"
},
"homepage": "https://github.com/localnerve/html-snapshots",
"description": "A selector-based html snapshot tool using Puppeteer or PhantomJS that sources sitemap.xml, robots.txt, or arbitrary input",
"contributors": [
{
"name": "Alex Grant",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/localnerve/html-snapshots/issues"
},
"scripts": {
"lint": "eslint .",
"test": "mocha test/mocha/**/*.js --exit --recursive --reporter spec",
"test:async": "mocha test/mocha/async/test.js --exit --reporter spec",
"test:common": "mocha test/mocha/common/*.js --exit --reporter spec",
"test:common:debug": "mocha --inspect-brk test/mocha/common/*.js --exit --reporter spec",
"test:browsers": "mocha test/mocha/browsers/test.js --exit --reporter spec",
"test:browsers:cover": "c8 -- npm run test:browsers",
"test:input-generators": "mocha test/mocha/input-generators/*.js --exit --reporter spec",
"test:input-generators:debug": "mocha --inspect-brk test/mocha/input-generators/*.js --exit --reporter spec",
"test:html-snapshots": "mocha test/mocha/html-snapshots/*.js --exit --reporter spec",
"test:html-snapshots:robots": "mocha test/mocha/html-snapshots/*.js --grep \"robots\" --exit --reporter spec",
"test:html-snapshots:puppeteer": "mocha test/mocha/html-snapshots/*.js --grep \"puppeteer specific\" --exit --reporter spec",
"test:html-snapshots:debug": "mocha --inspect-brk test/mocha/html-snapshots/*.js --exit --reporter spec",
"test:cover": "c8 -- npm test",
"validate": "npm ls"
},
"main": "./lib/html-snapshots",
"repository": {
"type": "git",
"url": "https://github.com/localnerve/html-snapshots.git"
},
"keywords": [
"SEO",
"html",
"snapshots",
"selector",
"ajax",
"SPA",
"robots.txt",
"sitemap.xml"
],
"dependencies": {
"async": "3.2.6",
"async-lock": "1.4.1",
"combine-errors": "3.0.3",
"got": "^13.0.0",
"phantomjs-prebuilt": "2.1.16",
"puppeteer": "^24.2.1",
"xml2js": "0.6.2"
},
"devDependencies": {
"eslint": "^9.20.1",
"@eslint/js": "^9.20.0",
"globals": "^15.15.0",
"express": "^4.21.2",
"mocha": "^11.1.0",
"c8": "^10.1.3",
"server-destroy": "^1.0.1",
"sitemap-xml": "^0.1.0"
},
"overrides": {
"request": "npm:@cypress/[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=18.18"
}
}