-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.94 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
{
"name": "seo-content-tester",
"version": "1.0.1",
"description": "Test your title, description and content of your page.",
"main": "./lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"clean": "rm -rf ./lib/",
"cm": "cz",
"lint": "eslint ./src/ --fix",
"format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"prepare": "husky install",
"semantic-release": "semantic-release",
"test:watch": "jest --watch",
"test": "jest --coverage",
"type-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xSyki/seo-content-tester.git"
},
"license": "MIT",
"author": {
"name": "xSyki",
"email": "[email protected]",
"url": "https://github.com/xSyki"
},
"engines": {
"node": ">=12.0"
},
"keywords": [
"seo",
"tester"
],
"bugs": {
"url": "https://github.com/xSyki/seo-content-tester/issues"
},
"homepage": "https://syki.pl/projects/seo-content-tester-package",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"showdown": "^2.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.1",
"@types/showdown": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.6.1",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.ts": "eslint --cache --cache-location .eslintcache --fix"
}
}