-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.94 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
{
"name": "aesth-vue-range-input",
"version": "1.0.0",
"private": false,
"description": "a completely customizable and aesthetic range input component for vue.",
"keywords": [
"vue-range-slider",
"vue-range-input",
"vue-input-range",
"vue-input-slider",
"aesthetic vue component"
],
"homepage": "https://github.com/idorenyinudoh/aesth-vue-range-input#readme",
"bugs": {
"url": "https://github.com/idorenyinudoh/aesth-vue-range-input/issues"
},
"license": "MIT",
"author": {
"name": "Idorenyin Udoh"
},
"files": [
"dist/*",
"src/**/*.vue"
],
"main": "dist/aesth-vue-range-input.umd.js",
"module": "dist/aesth-vue-range-input.esm.js",
"unpkg": "dist/aesth-vue-range-input.min.js",
"browser": {
"./sfc": "src/aesth-vue-range-input.vue"
},
"scripts": {
"serve": "vue-cli-service serve dev/main.js",
"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/aesth-vue-range-input.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/aesth-vue-range-input.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/aesth-vue-range-input.min.js",
"lint": "vue-cli-service lint"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^21.0.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"core-js": "^3.6.5",
"eslint": "^8.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^8.0.3",
"prettier": "^2.2.1",
"rollup": "^2.57.0",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue2": "^0.8.1",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
}
}