-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 953 Bytes
/
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": "gatsby-plugin-exclude",
"description": "exclude pages from gatsby",
"version": "1.0.2",
"main": "index.js",
"repository": "https://github.com/harryparkdotio/gatsby-plugin-exclude.git",
"author": "Harry Park <harry@harrypark.io>",
"license": "MIT",
"keywords": [
"gatsby",
"gatsby-plugin",
"exclude",
"remove",
"pages"
],
"scripts": {
"test": "jest test.js --coverage",
"cover": "codecov"
},
"peerDependencies": {
"gatsby": ">2.0.0-alpha"
},
"dependencies": {
"multimatch": "^4.0.0"
},
"devDependencies": {
"codecov": "^3.1.0",
"husky": "^3.0.5",
"jest": "^24.9.0",
"lint-staged": "^9.3.0",
"prettier": "^1.15.3"
},
"prettier": {
"singleQuote": true,
"semi": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,js,md,yml}": [
"prettier --write",
"git add"
]
}
}