-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
77 lines (77 loc) · 1.77 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "remark-details",
"version": "4.1.1",
"description": "a tokenizer for remark to support details plugin in pymdown",
"main": "lib/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"test": "npm run build && cd test && tsc && ava",
"release": "npm run build && zx scripts/release.mjs",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ir1d/remark-details.git"
},
"keywords": [
"remark",
"markdown"
],
"author": "Ir1d",
"contributes": [
{
"name": "ahacad",
"email": "ahacad@126.com"
},
{
"name": "true_mogician",
"email": "truemogician@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Ir1d/remark-details/issues"
},
"homepage": "https://github.com/Ir1d/remark-details#readme",
"devDependencies": {
"ava": "^3.15.0",
"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": {
"hast": "^1.0.0",
"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"
},
"ava": {
"files": [
"test/**/*.test.js"
]
}
}