-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.61 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.61 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
{
"name": "react-seo-analyzer",
"version": "2.0.1",
"description": "A React SEO Analyzer package with visual overlay, 20+ checks, and SEO scoring.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"test": "jest"
},
"keywords": [
"react",
"seo",
"analyzer",
"seo-analyzer",
"meta-tags",
"open-graph",
"accessibility"
],
"author": "Artak Harutyunyan",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"babel-jest": "^29.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"rollup": "^3.29.5",
"rollup-plugin-peer-deps-external": "^2.2.4"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.[jt]sx?$": "babel-jest"
},
"setupFilesAfterFramework": [
"@testing-library/jest-dom"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/artakharutyunyan/react-seo-analyzer.git"
},
"bugs": {
"url": "https://github.com/artakharutyunyan/react-seo-analyzer/issues"
},
"homepage": "https://github.com/artakharutyunyan/react-seo-analyzer#readme"
}