-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.41 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "preact-cli-plugin-netlify",
"version": "1.6.0",
"description": "Preact cli plugin for generating h2push headers and redirect rules for netlify",
"main": "index.js",
"scripts": {
"prepublish": "npm run lint",
"lint": "xo",
"test": "npm run lint"
},
"keywords": [
"preact",
"plugin",
"netlify",
"h2push"
],
"author": "Vinay Puppal <[email protected]> (https://www.vinaypuppal.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vinaypuppal/preact-cli-plugin-netlify.git"
},
"bugs": {
"url": "https://github.com/vinaypuppal/preact-cli-plugin-netlify/issues"
},
"homepage": "https://github.com/vinaypuppal/preact-cli-plugin-netlify#readme",
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint-config-prettier": "^6.0.0",
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2",
"xo": "^0.24.0"
},
"xo": {
"parser": "babel-eslint",
"extends": [
"prettier"
],
"env": [
"node"
],
"rules": {
"linebreak-style": 0
},
"space:": 2
},
"lint-staged": {
"*.js": [
"prettier --write",
"xo",
"git add"
],
"*.json": [
"prettier --write",
"git add"
],
"**/*.md": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}