-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "posthtml-sri",
"version": "2.0.1",
"description": "PostHTML subresource integrity plugin",
"license": "MIT",
"repository": "https://gitlab.com/abogical/posthtml-sri",
"homepage": "https://gitlab.com/abogical/posthtml-sri",
"author": "Abdelrahman Abdelrahman <[email protected]>",
"contributors": [
"Shiv Jha-Mathur <[email protected]>"
],
"main": "dist",
"engines": {
"node": ">=21"
},
"scripts": {
"build": "tsc",
"version": "conventional-changelog -i changelog.md -s -r 0 && git add changelog.md",
"test": "tsc && xo && nyc ava",
"lint": "xo",
"lintFix": "xo --fix"
},
"keywords": [
"html",
"posthtml",
"posthtml-plugin",
"sri",
"subresource integrity",
"security"
],
"dependencies": {
"ssri": "^12.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-angular": "^19.5.0",
"@types/node": "^22.7.5",
"@types/ssri": "^7.1.5",
"ava": "^6.1.3",
"conventional-changelog-cli": "^5.0.0",
"husky": "^9.1.6",
"nyc": "^17.1.0",
"posthtml": "^0.16.6",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"xo": "^0.59.3"
}
}