-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.43 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
{
"name": "vue-glow",
"version": "1.4.3",
"description": "A performant wrapper component to give dynamic glow effects in Vue ",
"author": "awtkns",
"license" : "MIT",
"keywords": [
"vue",
"nuxt",
"vuetify",
"glow",
"component",
"colored elevation",
"vue-glow"
],
"homepage": "https://github.com/awtkns/vue-glow#readme",
"repository": {
"type": "git",
"url": "https://github.com/awtkns/vue-glow"
},
"main": "dist/VueGlow.umd.js",
"module": "dist/VueGlow.esm.js",
"unpkg": "dist/VueGlow.min.js",
"browser": {
"./sfc": "src/VueGlow.vue"
},
"files": [
"dist/*"
],
"vetur": {
"tags": "tags.json",
"attributes": "attributes.json"
},
"scripts": {
"build": "npm run build:unpkg & npm run build:es & npm run build:umd",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/VueGlow.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/VueGlow.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/VueGlow.min.js"
},
"dependencies": {
"vue": "^2.6.10"
},
"devDependencies": {
"minimist": "^1.2.0",
"rollup": "^1.14.4",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify-es": "0.0.1",
"rollup-plugin-vue": "^4.7.2",
"vue-template-compiler": "^2.6.10"
}
}