-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
49 lines (49 loc) · 1.42 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
{
"name": "veeno",
"version": "0.0.4",
"description": "noUiSlider component for vue 2",
"keywords": [
"vue",
"slider",
"range",
"vue-slider",
"vue-range-slider",
"vue-component",
"vue-range-component",
"vue-slider-component"
],
"main": "dist/veeno.umd.js",
"repository": {
"type": "git",
"url": "https://github.com/Lahori-Jawan/veeno"
},
"author": "Nasir Khan <virgodgreat@gmail.com>",
"homepage": "http://veeno.surge.sh/",
"module": "dist/veeno.esm.js",
"unpkg": "dist/veeno.min.js",
"browser": {
"./sfc": "src/veeno.vue"
},
"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/veeno.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/veeno.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/veeno.min.js"
},
"dependencies": {
"nouislider": "^11.1.0"
},
"devDependencies": {
"minimist": "^1.2.0",
"rollup": "^0.57.1",
"rollup-plugin-auto-external": "^1.2.0",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-gzip": "^1.4.0",
"rollup-plugin-includepaths": "^0.2.3",
"rollup-plugin-uglify-es": "0.0.1",
"rollup-plugin-vue": "^3.0.0",
"rollup-plugin-uglify": "^4.0.0",
"vue": "^2.5.16",
"vue-template-compiler": "^2.5.16"
}
}