forked from elviswolcott/remark-admonitions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.56 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
{
"name": "remark-admonitions",
"version": "1.4.2",
"description": "Add admonitions support to remark",
"main": "lib/index.js",
"scripts": {
"test": "node test/index.js",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/elviswolcott/remark-admonitions.git"
},
"keywords": [
"remark",
"docusaurus",
"admonitions",
"markdown",
"mdx",
"plugin"
],
"author": "Elvis Wolcott",
"contributors": [
"Josh Heyer"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/elviswolcott/remark-admonitions/issues"
},
"homepage": "https://github.com/elviswolcott/remark-admonitions#readme",
"dependencies": {
"rehype-parse": "^6.0.2 || ^7.0.1",
"unified": "^9.2.2",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"colors": "^1.4.0",
"compiler": "^0.1.2",
"diff": "^5.2.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"rehype-document": "^5.1.0",
"rehype-format": "^3.1.0",
"rehype-stringify": "^8.0.0",
"remark-parse": "^7.0.2",
"remark-rehype": "^8.1.0",
"remark-stringify": "^8.0.1",
"remark15-remark-parse": "npm:remark-parse@^11.0.0",
"remark15-remark-stringify": "npm:remark-stringify@^11.0.0",
"to-vfile": "^6.1.0",
"vfile-reporter": "^6.0.2"
}
}