-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.64 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
{
"name": "@vusion/md-vue-loader",
"version": "1.4.0",
"author": "Rainfore <[email protected]>",
"contributors": [
],
"description": "Webpack loader for converting Markdown files to alive Vue components.",
"scripts": {
"test": "webpack-cli --config test/webpack.config.js",
"test:dev": "webpack-dev-server --content-base test/ --config test/webpack.config.js --open",
"test:options": "webpack-cli --config test/webpack.config.options.js",
"test:plugins": "webpack-cli --config test/webpack.config.plugins.js"
},
"main": "index.js",
"repository": "vusion/md-vue-loader",
"bugs": {
"url": "http://github.com/vusion/md-vue-loader/issues"
},
"keywords": [
"markdown",
"vue",
"webpack",
"loader"
],
"license": "MIT",
"tags": [
"markdown",
"vue",
"webpack",
"loader"
],
"dependencies": {
"hash-sum": "^1.0.2",
"highlight.js": "^9.12.0",
"loader-utils": "^1.1.0",
"lru-cache": "^5.1.1",
"markdown-it": "^9.1.0"
},
"devDependencies": {
"husky": "^3.0.4",
"vusion-hooks": "^0.3.0",
"cache-loader": "^4.0.1",
"css-loader": "^0.28.11",
"eslint": "^5.12.0",
"eslint-config-vusion": "^3.0.2",
"markdown-it-for-inline": "^0.1.1",
"markdown-it-task-lists": "^2.1.1",
"raw-loader": "^0.5.1",
"vue": "^2.5.22",
"vue-loader": "^15.5.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.22",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"husky": {
"hooks": {
"pre-commit": "node node_modules/vusion-hooks/pre-commit"
}
}
}