forked from posthtml/posthtml-plugin-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "posthtml-amp-images-parcel",
"description": "PostHTML plugin for adding the appropriate URL to images in parcel",
"version": "0.0.1",
"author": "Paolo Mioni",
"ava": {
"verbose": "true"
},
"bugs": "https://github.com/HCESrl/posthtml-amp-images-parcel/issues",
"dependencies": {
"posthtml": "^0.9.0"
},
"devDependencies": {
"ava": "^0.15.2",
"conventional-changelog": "^1.1.0",
"conventional-changelog-lint": "^1.0.0",
"husky": "^0.11.5",
"mversion": "^1.10.1",
"snazzy": "^4.0.0",
"standard": "^7.1.2"
},
"engines": {
"node": ">=4"
},
"homepage": "https://github.com/HCESrl/posthtml-amp-images-parcel",
"keywords": [
"html",
"posthtml",
"posthtml-plugin",
"amp",
"parcel"
],
"license": "MIT",
"main": "lib",
"repository": "HCESrl/posthtml-amp-images-parcel",
"scripts": {
"commitmsg": "conventional-changelog-lint -p angular -e",
"lint": "standard | snazzy",
"precommit": "npm run lint",
"release-major": "mversion major",
"release-minor": "mversion minor",
"release-patch": "mversion patch",
"test": "npm run lint && ava"
}
}