forked from cedricdelpoux/gatsby-remark-normalize-paths
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.09 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.09 KB
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
{
"name": "gatsby-remark-normalize-paths",
"version": "1.0.0",
"description": "Normalize paths in frontmatter and body of markdown files to be gatsby compliant",
"repository": "https://github.com/xuopled/gatsby-remark-normalize-paths",
"author": "Cédric Delpoux",
"license": "MIT",
"private": false,
"keywords": [
"gatsby",
"gatsby-plugin",
"remark",
"paths",
"absolute",
"relative"
],
"main": "index.js",
"dependencies": {
"each-props": "^1.3.2",
"is-valid-path": "^0.1.1",
"path": "^0.12.7",
"unist-util-visit": "^1.4.0"
},
"devDependencies": {
"babel-cli": "^6.26.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-alpha"
},
"scripts": {
"build": "cross-env BABEL_ENV=production babel src --out-dir .",
"lint": "eslint --ext .js src",
"prepublishOnly": "yarn build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}