-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.31 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
{
"name": "gatsby-read-time-estimate",
"description": "Gatsby plugin to add an accurate measurement of read time using any content",
"version": "0.0.1",
"scripts": {
"lint": "eslint . --ignore-path .gitignore --ext .js --ext .jsx",
"fix-lint": "yarn lint -- --fix"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"medium-read-time",
"read-time-estimate"
],
"author": {
"name": "Pritish Vaidya",
"email": "[email protected]",
"url": "pritishvaidya.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pritishvaidya/gatsby-read-time-estimate.git"
},
"homepage": "https://github.com/pritishvaidya/gatsby-read-time-estimate#readme",
"bugs": {
"url": "https://github.com/pritishvaidya/gatsby-read-time-estimate/issues"
},
"license": "MIT",
"dependencies": {
"read-time-estimate": "^0.0.3"
},
"devDependencies": {
"eslint": "^5.12.1",
"babel-eslint": "^10.0.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.15.0",
"lint-staged": "^8.1.0",
"husky": "^1.3.1"
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --fix",
"git add"
]
},
"ignore": [
"**/test/*.js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}