-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
75 lines (75 loc) · 1.91 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
{
"name": "vue-md-loader",
"version": "2.0.6",
"description": "Webpack loader for converting Markdown files to ALIVE Vue components.",
"main": "index.js",
"files": [
"index.js",
"src"
],
"scripts": {
"dev:example": "cd example && cross-env NODE_ENV=development webpack-dev-server --hot --port 8888 --static .",
"build:example": "cd example && cross-env NODE_ENV=production webpack",
"lint": "eslint --ext .js,.vue .",
"lint:fix": "pnpm lint -- --fix",
"test": "jest --coverage",
"test:watch": "pnpm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wxsms/vue-md-loader.git"
},
"keywords": [
"vue",
"markdown",
"md",
"webpack",
"loader",
"live",
"demo",
"document"
],
"author": "wxsm",
"license": "MIT",
"bugs": {
"url": "https://github.com/wxsms/vue-md-loader/issues"
},
"homepage": "https://github.com/wxsms/vue-md-loader#readme",
"jest": {
"collectCoverageFrom": [
"src/**/*",
"!tests/**/*"
]
},
"devDependencies": {
"@babel/preset-env": "7.16.11",
"babel-core": "6.26.3",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.3",
"cheerio": "1.0.0-rc.10",
"cross-env": "7.0.3",
"css-loader": "6.6.0",
"eslint": "8.8.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-html": "6.2.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-vue": "8.4.1",
"jest": "27.5.0",
"markdown-it-anchor": "8.4.1",
"prettier": "2.5.1",
"style-loader": "3.3.1",
"vue": "2.6.14",
"vue-loader": "15.9.8",
"vue-template-compiler": "2.6.14",
"webpack": "5.76.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.7.4"
},
"dependencies": {
"highlight.js": "^11.0.0",
"markdown-it": "^12.0.0"
}
}