-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
{
"name": "@hashicorp/remark-plugins",
"description": "A potpourri of remark plugins used to process .mdx files",
"version": "4.1.1",
"author": "Jeff Escalante",
"bugs": "https://github.com/hashicorp/remark-plugins/issues",
"contributors": [
"Kevin Pruett"
],
"dependencies": {
"@mdx-js/util": "1.6.22",
"github-slugger": "^1.3.0",
"remark": "12.0.1",
"remark-mdx": "1.6.22",
"to-vfile": "^6.1.0",
"unist-util-flatmap": "^1.0.0",
"unist-util-is": "^4.0.2",
"unist-util-map": "^2.0.1",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"@mdx-js/mdx": "^1.6.14",
"@types/jest": "^26.0.7",
"jest": "^26.1.0",
"mdast-util-to-string": "^1.1.0",
"normalize-newline": "^3.0.0",
"rehype-parse": "^7.0.1",
"rehype-stringify": "^8.0.0",
"release": "^6.3.0",
"remark-html": "^12.0.0",
"remark-rehype": "^7.0.0"
},
"homepage": "https://github.com/hashicorp/remark-plugins#readme",
"keywords": [],
"license": "MPL-2.0",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/hashicorp/remark-plugins",
"scripts": {
"test": "jest --verbose",
"release:patch": "release patch && npm publish",
"release:minor": "release minor && npm publish",
"release:major": "release major && npm publish",
"release:pre": "release pre canary && npm publish --tag=canary"
}
}