-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
122 lines (122 loc) · 3.15 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "seo-analyzer",
"version": "3.2.0",
"description": "A library for analyze a HTML files to show all of the SEO defects",
"license": "MIT",
"repository": "https://github.com/maddevsio/seo-analyzer",
"homepage": "https://github.com/maddevsio/seo-analyzer",
"bugs": "https://github.com/maddevsio/seo-analyzer/issues",
"author": {
"name": "Denisoed",
"email": "[email protected]",
"url": "https://denisoed.com"
},
"contributors": [
{
"name": "Roman Zheltukhin",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/oh-roman"
},
{
"name": "Kristján Andri Gunnarsson",
"email": "[email protected]"
}
],
"exports": {
".": {
"types": "./dist/types",
"import": "./dist/index.es.js",
"require": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"browser": "./dist/index.umd.js",
"types": "./dist/types",
"files": [
"dist"
],
"bin": {
"seo-analyzer": "./bin/index.js"
},
"scripts": {
"make": "rimraf dist && rollup -c && node ./example/index.js",
"build": "rimraf dist && npm run build:types && rollup -c",
"build:types": "tsc --emitDeclarationOnly",
"prepare": "husky",
"prepublish": "npm run build && npm run test",
"format": "prettier \"src/**/*.ts\" --write --config .prettierrc",
"test": "jest"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
],
"*.{json,md,yml}": [
"prettier --write"
]
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@babel/register": "^7.23.7",
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "12.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.0.2",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "13.0.0",
"@types/cli-progress": "^3.11.5",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsdom": "^21.1.6",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.13.2",
"semantic-release": "^23.0.6",
"sinon": "^17.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"dependencies": {
"axios": "^1.6.8",
"cfonts": "^3.2.0",
"cli-progress": "^3.12.0",
"colors": "^1.4.0",
"commander": "^12.0.0",
"express": "^4.19.2",
"i": "^0.3.7",
"jsdom": "^24.0.0",
"sitemap-stream-parser": "^1.7.0"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"es5",
"react",
"vue",
"svelte",
"nuxt",
"next",
"angular",
"vanilla",
"jquery",
"plugins",
"seo",
"analyzer",
"html",
"javascript"
]
}