-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
74 lines (74 loc) · 2.02 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
{
"name": "vue-code-highlight",
"version": "0.7.8",
"author": "Jan Bílek",
"email": "honza@elision.design",
"url": "https://elision.design/",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/elisiondesign/vue-code-highlight"
},
"scripts": {
"start": "vue-cli-service serve",
"build": "vue-cli-service build --dest demo && npm run build-bundle",
"build-bundle": "npm run build:umd & npm run build:es & npm run build:unpkg",
"build:umd": "rollup --config rollup.config.js --format umd --file dist/vue-code-highlight.umd.js",
"build:es": "rollup --config rollup.config.js --format es --file dist/vue-code-highlight.esm.js",
"build:unpkg": "rollup --config rollup.config.js --format iife --file dist/vue-code-highlight.min.js",
"lint": "vue-cli-service lint",
"deploy": "git subtree push --prefix demo origin gh-pages"
},
"dependencies": {
"prism-es6": "^1.2.0",
"vue": "^2.5.16"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.0-rc.5",
"@vue/cli-plugin-eslint": "^3.0.0-rc.5",
"@vue/cli-service": "^3.0.0-rc.5",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"rollup": "^0.57.1",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-vue": "^3.0.0",
"vue-template-compiler": "^2.5.16"
},
"main": "dist/vue-code-highlight.umd.js",
"module": "dist/vue-code-highlight.esm.js",
"unpkg": "dist/vue-code-highlight.min.js",
"browser": {
"./sfc": "src/CodeHighlight.vue"
},
"keywords": [
"Vue",
"Code highlight",
"Prism"
],
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}