-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.25 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
{
"name": "prevent-widows",
"version": "1.1.3",
"description": "Prevent widows from appearing in a string.",
"keywords": [
"posthtml",
"posthtml-plugin",
"content",
"text",
"widows"
],
"homepage": "https://github.com/bashaus/prevent-widows",
"repository": {
"type": "git",
"url": "https://github.com/bashaus/prevent-widows.git"
},
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"clean": "rm -rf dist/",
"lint": "eslint .",
"prepare": "husky",
"test": "jest"
},
"devDependencies": {
"@commitlint/cli": "20.1.0",
"@commitlint/config-conventional": "20.0.0",
"@eslint/js": "^9.36.0",
"@swc/core": "^1.13.5",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@types/node": "^24.6.1",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-junit": "^16.0.0",
"posthtml": "^0.16.6",
"prettier": "3.5.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0"
},
"optionalDependencies": {
"posthtml": "*"
}
}