forked from remarkjs/remark-react
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.46 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
{
"name": "remark-vue",
"description": "Compile Markdown to Vue with remark",
"version": "0.9.4",
"author": {
"name": "Mehdi Lahlou",
"email": "mlahlou@protonmail.ch"
},
"contributors": [
"Tom MacWright <tom@macwright.org>",
"Titus Wormer <tituswormer@gmail.com>",
"Ciaran Wood <cyrzinsomnia@gmail.com>",
"Juho Vepsalainen <bebraw@gmail.com>",
"Jason Trill <jason@jasontrill.com>",
"Tsuyusato Kitsune <make.just.on@gmail.com>",
"Jeremy Stucki <jeremy@interactivethings.com>",
"Mehdi Lahlou <mlahlou@protonmail.ch>"
],
"dependencies": {
"@mapbox/hast-util-table-cell-style": "^0.1.3",
"hast-to-hyperscript": "https://github.com/medfreeman/hast-to-hyperscript.git#vuejs",
"hast-util-sanitize": "^1.0.0",
"mdast-util-to-hast": "^3.0.0"
},
"devDependencies": {
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"remark": "^9.0.0",
"remark-cli": "^5.0.0",
"remark-frontmatter": "^1.2.1",
"remark-github": "^7.0.0",
"remark-preset-lint-consistent": "^2.0.0",
"remark-preset-lint-recommended": "^3.0.2",
"remark-toc": "^5.0.0",
"standard-version": "^4.4.0",
"vfile": "^3.0.0",
"xo": "^0.23.0"
},
"files": [
"index.js",
"LICENSE"
],
"keywords": [
"compile",
"html",
"markdown",
"remark",
"stringify",
"vue"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/medfreeman/remark-vue.git"
},
"bugs": "https://github.com/medfreeman/remark-vue/issues",
"scripts": {
"sub-install": "cd test/vue/v2.5 && yarn install && cd ../..",
"lint": "xo",
"test-api": "mocha --check-leaks test/index.js",
"test-coverage": "nyc --reporter lcov mocha test/index.js",
"test": "yarn sub-install && yarn test-coverage",
"release": "standard-version; git push --follow-tags"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"functions": 100,
"branches": 100
},
"xo": {
"space": true,
"rules": {
"import/no-extraneous-dependencies": "off",
"import/no-unresolved": "off",
"import/no-dynamic-require": "off",
"max-nested-callbacks": "off",
"no-eq-null": "off",
"eqeqeq": [
"error",
"always",
{
"null": "ignore"
}
]
}
},
"remarkConfig": {
"plugins": [
"preset-lint-recommended",
"preset-lint-consistent",
"github",
"toc"
],
"settings": {
"bullet": "*"
}
}
}