-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
{
"name": "extract-mdx-metadata",
"description": "Extract MDX metadata without using babel or webpack loaders.",
"version": "2.0.0",
"author": {
"name": "Michael Novotny",
"email": "[email protected]",
"url": "https://manovotny.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/manovotny/extract-mdx-metadata.git"
},
"keywords": [
"extract",
"markdown",
"mdx",
"mdx-js",
"meta",
"metadata"
],
"engines": {
"node": ">=10.0.0",
"yarn": ">=1.0.0"
},
"main": "index.js",
"scripts": {
"coverage": "jest --coverage",
"example": "node example/example.js",
"lint": "eslint . --ext .json --ext .js",
"prettier": "prettier --write --ignore-unknown .",
"prettier-check": "prettier --check --ignore-unknown .",
"test": "yarn lint && yarn prettier-check && yarn coverage",
"unit": "jest"
},
"git": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown",
"git add"
]
},
"dependencies": {
"@babel/core": "7.15.0",
"@babel/generator": "7.15.0",
"@babel/parser": "7.15.0",
"@babel/traverse": "7.15.0",
"@mdx-js/mdx": "1.6.22",
"unist-util-visit": "2.0.3"
},
"devDependencies": {
"@vercel/git-hooks": "1.0.0",
"eslint": "7.22.0",
"eslint-config-get-off-my-lawn": "6.0.1",
"jest": "27.0.6",
"jest-haste-map": "27.0.6",
"jest-resolve": "27.0.6",
"jest-snapshot-serializer-raw": "1.2.0",
"lint-staged": "11.1.1",
"prettier": "2.3.2",
"prettier-config-get-off-my-lawn": "1.0.0"
}
}