forked from hl037/vue-contenteditable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.35 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
{
"name": "vue-contenteditable",
"version": "1.0.2",
"description": "Vue.js plugin providing a <contenteditable/> element supporting v-model. It also provides some (optional) features, like preventing html input / paste or new lines.",
"keywords": [
"Vue",
"directive",
"contenteditable"
],
"homepage": "https://github.com/hl037/vue-contenteditable",
"bugs": "https://github.com/hl037/vue-contenteditable/issues",
"license": "MIT",
"author": {
"name": "Léo Flaventin Hauchecorne",
"email": "[email protected]",
"url": "http://leo-flaventin.com"
},
"main": "dist/contenteditable.umd.js",
"module": "dist/contenteditable.esm.js",
"unpkg": "dist/contenteditable.min.js",
"browser": {
"./sfc": "src/contenteditable.vue"
},
"scripts": {
"build": "npm run build:umd & npm run build:es & npm run build:unpkg",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/contenteditable.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/contenteditable.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/contenteditable.min.js"
},
"devDependencies": {
"rollup": "^0.57.1",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-vue": "^3.0.0",
"vue": "^2.5.16",
"vue-template-compiler": "^2.5.16"
}
}