forked from posthtml/posthtml-webp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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-webp",
"description": "Add webp supporting in your html",
"version": "2.2.0",
"author": "seokirill",
"bugs": "https://github.com/posthtml/posthtml-webp/issues",
"dependencies": {
"posthtml": "^0.13.3"
},
"devDependencies": {
"ava": "^3.12.1",
"conventional-changelog": "^3.1.23",
"conventional-changelog-cli": "^2.1.0",
"conventional-changelog-lint": "^2.1.1",
"coveralls": "^3.1.0",
"husky": "^4.2.5",
"mversion": "^2.0.1",
"nyc": "^15.1.0",
"snazzy": "^8.0.0",
"standard": "^14.3.4"
},
"husky": {
"hooks": {
"pre-push": "npm t",
"pre-commit": "npm run lint",
"commit-msg": "conventional-changelog-lint -p angular -e"
}
},
"engines": {
"node": ">=10"
},
"homepage": "https://github.com/posthtml/posthtml-webp",
"keywords": [
"html",
"posthtml",
"posthtml-plugin",
"webp"
],
"license": "MIT",
"main": "lib",
"repository": "posthtml/posthtml-webp",
"scripts": {
"version": "conventional-changelog -i changelog.md -s -r 0 && git add changelog.md && git commit -m \"build: update changelog\"",
"lint": "standard | snazzy",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "npm run lint && ava"
}
}