-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
123 lines (123 loc) · 3.2 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@vivliostyle/vfm",
"description": "Custom Markdown syntax specialized in book authoring.",
"version": "2.2.1",
"author": "Vivliostyle Foundation",
"license": "Apache-2.0",
"engines": {
"node": ">= 12"
},
"main": "lib/index.js",
"bin": {
"vfm": "lib/cli.js"
},
"keywords": [
"markdown",
"vfm",
"vivliostyle"
],
"repository": {
"type": "git",
"url": "https://github.com/vivliostyle/vfm.git"
},
"homepage": "https://github.com/vivliostyle/vfm",
"bugs": {
"url": "https://github.com/vivliostyle/vfm/issues"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"types": "lib/index.d.ts",
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.ts": [
"eslint",
"git add"
],
"*.md": [
"doctoc -p",
"git add"
]
},
"scripts": {
"build": "shx rm -rf lib && tsc && shx chmod +x lib/cli.js",
"dev": "tsc -w",
"prepare": "npm run build",
"release": "release-it",
"release:dry": "release-it --dry-run",
"release:pre": "release-it --preRelease --npm.tag=latest",
"test": "jest",
"test:watch": "jest --runInBand --watch",
"test:debug": "jest tests/xxx.test.ts --silent=false --verbose false"
},
"dependencies": {
"debug": "^4.3.1",
"doctype": "^2.0.4",
"github-slugger": "^1.4.0",
"hast-util-find-and-replace": "^3.2.0",
"hast-util-is-element": "^1.1.0",
"hast-util-select": "^4.0.2",
"hastscript": "^6.0.0",
"js-yaml": "^4.1.0",
"mdast-util-find-and-replace": "^1.1.1",
"mdast-util-to-hast": "^10.1.1",
"mdast-util-to-string": "^2.0.0",
"meow": "^9.0.0",
"refractor": "^3.3.0",
"rehype-format": "^3.1.0",
"rehype-raw": "^5.0.0",
"rehype-stringify": "^8.0.0",
"remark-attr": "^0.11.1",
"remark-breaks": "^1.0.5",
"remark-footnotes": "^2.0.0",
"remark-frontmatter": "^2.0.0",
"remark-parse": "^8.0.2",
"remark-rehype": "^8.0.0",
"remark-shortcodes": "^0.3.1",
"to-vfile": "^6.1.0",
"unified": "^9.2.0",
"unist-builder": "^2.0.3",
"unist-util-filter": "^2.0.3",
"unist-util-find-after": "^3.0.0",
"unist-util-inspect": "^6.0.1",
"unist-util-remove": "^2.0.1",
"unist-util-select": "^3.0.4",
"unist-util-visit": "^2.0.3",
"unist-util-visit-parents": "^3.1.1"
},
"devDependencies": {
"@release-it/conventional-changelog": "^2.0.0",
"@types/common-tags": "^1.8.0",
"@types/debug": "^4.1.7",
"@types/github-slugger": "^1.3.0",
"@types/hast": "^2.3.4",
"@types/jest": "^29.0.3",
"@types/js-yaml": "^4.0.5",
"@types/mdast": "^3.0.10",
"@types/node": "^18.7.21",
"@types/refractor": "^3.0.2",
"@types/vfile": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@uetchy/doctoc": "^1.5.0",
"common-tags": "^1.8.2",
"eslint": "^8.24.0",
"husky": "^4.3.8",
"jest": "^29.0.3",
"lint-staged": "^10.5.3",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"release-it": "^14.2.2",
"shx": "^0.3.4",
"ts-jest": "^29.0.2",
"typescript": "^4.8.3"
}
}