-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "remark-tabbed",
"version": "0.1.0",
"description": "A remark extention to support tabbed syntax in pymarkdown.",
"main": "lib/index.js",
"type": "module",
"scripts": {
"check": "tsc --noEmit",
"build": "tsc",
"test": "cd test/ && tsc && ava micromark-tabbed.test.js && ava remark-tabbed.test.js"
},
"keywords": [
"remark",
"tabbed"
],
"author": "Shaoyu Wang",
"license": "ISC",
"devDependencies": {
"@types/hast": "^3.0.3",
"ava": "^5.3.1",
"bumpp": "^6.0.6",
"child_process": "^1.0.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"fs-extra": "^10.0.0",
"micromark": "^3.0.5",
"prettier": "^2.3.2",
"rehype-stringify": "^9.0.2",
"remark": "^14.0.1",
"remark-cli": "^10.0.0",
"remark-parse": "^10.0.0",
"remark-rehype": "^9.1.0",
"remark-stringify": "^10.0.2",
"to-vfile": "^7.2.1",
"ts-node": "^10.2.0",
"typescript": "^4.4.2",
"unified-printer": "^1.1.3",
"vfile": "^5.0.2",
"zx": "^2.0.0"
},
"dependencies": {
"hastscript": "^7.0.2",
"mdast-util-from-markdown": "^1.0.2",
"mdast-util-to-markdown": "^1.0.0",
"micromark-factory-space": "^1.0.0",
"micromark-util-character": "^1.1.0",
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "1.0.1",
"unified": "^10.1.0",
"unist-util-visit": "^4.1.0"
}
}