-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.55 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
{
"name": "vue-contenteditable-input",
"version": "0.1.4",
"description": "Contenteditable directive with v-model, auto focus, preventing new line on enter, formatting html text to plain text etc.,",
"keywords": [
"Vue",
"directive",
"contenteditable",
"input"
],
"homepage": "https://github.com/sudheer-ranga/vue-contenteditable-input",
"bugs": "https://github.com/sudheer-ranga/vue-contenteditable-input/issues",
"license": "MIT",
"author": {
"name": "Sudheer Ranga",
"email": "sudheer90pr@gmail.com",
"url": "https://github.com/sudheer-ranga/"
},
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js"
],
"main": "dist/vue-contenteditable-input.umd.js",
"module": "dist/vue-contenteditable-input.esm.js",
"unpkg": "dist/vue-contenteditable-input.min.js",
"browser": {
"./sfc": "src/vue-contenteditable-input.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/vue-contenteditable-input.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/vue-contenteditable-input.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/vue-contenteditable-input.min.js"
},
"devDependencies": {
"rollup": "^2.3.2",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-vue": "^5.1.6",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
}
}