-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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": "gatsby-remark-reading-time",
"description": "Adds an estimated reading time field to all remark nodes",
"version": "1.1.0",
"author": "Garet McKinley <[email protected]>",
"license": "MIT",
"keywords": [
"gatsby",
"gatsby-plugin",
"remark",
"reading time",
"node",
"medium",
"estimate"
],
"scripts": {
"prebuild": "npm run lint",
"build": "cross-env BABEL_ENV=production babel src --out-dir .",
"lint": "eslint --ext .js src",
"test": "npm run lint",
"prepublishOnly": "yarn build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"reading-time": "^1.1.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^9.0.0",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.1.5",
"eslint": "^5.3.0",
"eslint-config-prettier": "^3.0.1",
"husky": "^1.0.0-rc.13",
"lint-staged": "^7.2.2",
"prettier": "1.14.2"
},
"peerDependencies": {
"gatsby": "^2.0.0 || ^3.0.0"
}
}