forked from pngwn/MDsveX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.92 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
{
"name": "mdsvex",
"version": "0.8.3",
"description": "Markdown preprocessor for Svelte",
"main": "dist/main.cjs.js",
"module": "dist/main.es.js",
"browser": "dist/main.browser.js",
"repository": "https://github.com/pngwn/MDsveX",
"scripts": {
"build": "rollup -c",
"lint": "eslint 'src/' 'test/' --ext .js,.ts",
"test": "uvu -r esm test test.js$",
"test:watch": "node -r esm ./test/_scripts/test_watch.js --verbose",
"test:cov": "yarn lint && jest --verbose --coverage",
"generate_files": "node -r esm ./test/_scripts/generate_markdown_html.js"
},
"files": [
"dist/*"
],
"keywords": [
"test",
"preprocessor",
"mdx",
"markdown",
"svelte"
],
"author": "pngwn <[email protected]>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-replace": "^2.2.1",
"@starptech/prettyhtml-hast-to-html": "^0.10.0",
"escape-html": "^1.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.2",
"esm": "^3.2.25",
"front-matter": "^4.0.0",
"js-yaml": "^3.13.1",
"node-fetch": "^2.6.0",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.0",
"prism-svelte": "^0.4.6",
"rehype-slug": "^3.0.0",
"rehype-toc": "^3.0.1",
"remark-autolink-headings": "^6.0.0",
"remark-containers": "^1.1.1",
"remark-external-links": "^6.0.0",
"remark-frontmatter": "^2.0.0",
"remark-parse": "^8.0.2",
"remark-rehype": "^7.0.0",
"remark-slug": "^6.0.0",
"retext": "^7.0.1",
"retext-smartypants": "^4.0.0",
"rollup": "^2.10.9",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^5.1.1",
"svelte": "^3.14.1",
"toml": "^3.0.0",
"unified": "^9.0.0",
"uvu": "^0.0.14"
},
"peerDependencies": {
"svelte": "3.x"
},
"dependencies": {
"prismjs": "^1.17.1"
}
}