-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.79 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
{
"name": "ifuentes-website-tests",
"version": "1.0.0",
"description": "Test suite for ifuentes.net static website",
"main": "index.js",
"scripts": {
"dev": "node scripts/dev-server.js",
"test": "mocha tests/**/*.test.js --timeout 5000",
"test:watch": "mocha tests/**/*.test.js --watch",
"test:html": "mocha tests/html.test.js",
"test:sw": "mocha tests/sw.test.js",
"test:manifest": "mocha tests/manifest.test.js",
"test:a11y": "mocha tests/accessibility.test.js",
"test:seo": "mocha tests/seo-performance.test.js",
"test:coverage": "nyc mocha tests/**/*.test.js",
"lint": "eslint tests/**/*.js",
"validate:html": "html-validate index.html resume.html now.html 404.html offline.html privacy.html stats.html security-policy.html security-acknowledgments.html",
"validate:json": "jsonlint site.webmanifest",
"validate:budget": "node scripts/check-budget.js",
"optimize:images": "node scripts/optimize-images.js",
"generate:og-cards": "node scripts/generate-og-cards.js",
"fix:html": "node scripts/fix-html.js",
"audit": "lighthouse https://ifuentes.net --output=html --output-path=./lighthouse-report.html",
"prepare": "husky"
},
"keywords": [
"testing",
"static-site",
"pwa",
"accessibility",
"seo"
],
"author": "Iñaki Fuentes",
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"chai": "^4.3.10",
"eslint": "^8.56.0",
"html-validate": "^8.9.1",
"husky": "^9.1.7",
"jsdom": "^23.2.0",
"jsonlint": "^1.6.3",
"lighthouse": "^12.2.1",
"mocha": "^11.0.0",
"nyc": "^15.1.0"
},
"overrides": {
"underscore": "^1.13.6"
},
"nyc": {
"reporter": [
"html",
"text"
],
"exclude": [
"tests/**",
"node_modules/**"
]
}
}