-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "netlify-plugin-html-validate",
"version": "1.1.1",
"description": "Netlify plugin for post-build validation of HTML",
"main": "index.js",
"scripts": {
"test": "tap",
"lint": "eslint *.js",
"preversion": "if [[ \"$(git rev-parse --abbrev-ref HEAD)\" != \"master\" ]]; then echo \"Not on master\" && exit 1; fi",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oliverroick/netlify-plugin-html-validate.git"
},
"keywords": [
"netlify",
"plugin",
"netlify-plugin",
"html",
"validation"
],
"author": "Oliver Roick",
"license": "MIT",
"bugs": {
"url": "https://github.com/oliverroick/netlify-plugin-html-validate/issues"
},
"homepage": "https://github.com/oliverroick/netlify-plugin-html-validate#readme",
"dependencies": {
"html-validate": "^7.8.0"
},
"devDependencies": {
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.22.1",
"sinon": "^15.0.1",
"tap": "^16.0.1"
}
}