-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.07 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
{
"name": "posthtml-picture-srcset",
"version": "1.0.2",
"description": "PostHTML plugin for generating webp images and replacing <img> tags with <picture> tags and their responsive srcset attributes",
"license": "MIT",
"repository": "kingkongdevs/posthtml-picture-srcset",
"author": "kingkongdevs",
"main": "lib",
"engines": {
"node": ">=10"
},
"scripts": {
"version": "conventional-changelog -i changelog.md -s -r 0 && git add changelog.md",
"test": "xo && nyc ava",
"pretest": "clinton"
},
"keywords": [
"html",
"posthtml",
"posthtml-plugin"
],
"dependencies": {
"fs": "0.0.1-security",
"image-size": "^1.0.1",
"rollup-plugin-generate-image-sizes": "^0.0.20",
"sharp": "^0.32.4"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"ava": "^3.13.0",
"clinton": "^0.14.0",
"conventional-changelog-cli": "^2.0.31",
"husky": "^4.3.0",
"nyc": "^15.1.0",
"posthtml": "^0.13.3",
"xo": "^0.33.1"
},
"exports": "./lib/picture-srcset.js"
}