This repository has been archived by the owner on Jan 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
58 lines (58 loc) · 1.61 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
{
"name": "vue-mark-display",
"version": "0.2.2",
"description": "a Vue Component to generate Markdown-based slides",
"main": "dist/vue-mark-display.cjs.js",
"module": "dist/vue-mark-display.esm.js",
"files": [
"dist"
],
"homepage": "https://github.com/jinjiang/vue-mark-display#readme",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/jinjiang/vue-mark-display/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:Jinjiang/v-mark-display.git"
},
"scripts": {
"dev": "rm -Rf dist && rollup -c -w",
"build": "rm -Rf dist && rollup -c --environment BUILD:production",
"examples": "parcel examples/index.html -d tmp",
"examples:build": "rm -Rf docs && parcel build examples/index.html --public-url ./ -d docs",
"lint": "prettier --write .{,/examples,/src}/*.{js,json,css,vue} *.md"
},
"keywords": [
"vue",
"markdown",
"slides"
],
"author": "Jinjiang <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"hammerjs": "^2.0.8",
"highlight.js": "^10.1.2",
"husky": "^3.0.5",
"parcel-bundler": "^1.12.3",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"rollup": "^1.21.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-vue": "^5.0.1",
"vue": "^2.6.10",
"vue-hot-reload-api": "^2.3.3",
"vue-template-compiler": "^2.6.10"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"marked": "^4.0.10"
}
}