-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.35 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
{
"name": "seo-ci",
"version": "1.0.0",
"private": true,
"description": "Reusable GitHub Actions and a reusable workflow that gate deployments on technical-SEO correctness.",
"license": "MIT",
"author": "Nima Jafari (https://github.com/nimajafari)",
"repository": {
"type": "git",
"url": "https://github.com/nimajafari/seo-ci.git"
},
"keywords": [
"seo",
"github-actions",
"ci",
"robots-txt",
"sitemap",
"canonical",
"json-ld",
"lighthouse",
"core-web-vitals"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "node scripts/build.mjs",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"serve-fixtures": "node scripts/serve-fixtures.mjs",
"verify": "npm run typecheck && npm run lint && npm run test && npm run build"
},
"dependencies": {
"@actions/core": "^1.11.1",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"cheerio": "^1.0.0",
"fast-xml-parser": "^4.5.1",
"robots-parser": "^3.0.1"
},
"optionalDependencies": {
"@lhci/cli": "^0.14.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.5",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"vitest": "^2.1.8"
}
}