-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
82 lines (82 loc) · 2.08 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "bs-vue-timeline",
"version": "0.1.4",
"private": false,
"description": "An alternative responsive boostrap vue timeline",
"author": "Angelin Calu",
"license": "MIT",
"scripts": {
"serve": "vue-cli-service serve",
"build": "npm run build:umd & npm run build:es & npm run build:unpkg",
"build:umd": "rollup --config rollup.config.js --format umd --file dist/bs-vue-timeline.umd.js",
"build:es": "rollup --config rollup.config.js --format es --file dist/bs-vue-timeline.esm.js",
"build:unpkg": "rollup --config rollup.config.js --format iife --file dist/bs-vue-timeline.min.js"
},
"files": [
"dist/*"
],
"dependencies": {
"bootstrap-vue": "2.0.0-rc.27",
"css-vars-ponyfill": "2.0.2",
"moment": "2.29.4",
"vue": "^2.5.22"
},
"devDependencies": {
"@vue/cli-plugin-babel": "3.6.0",
"@vue/cli-plugin-eslint": "3.6.0",
"@vue/cli-service": "5.0.8",
"babel-eslint": "^10.0.1",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"rollup": "^1.17.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-vue": "^6.0.0",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.37.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"keywords": [
"timeline",
"bootstrap-vue",
"vuejs"
],
"main": "dist/bs-vue-timeline.umd.js",
"module": "dist/bs-vue-timeline.js",
"unpkg": "dist/bs-vue-timeline.min.js",
"browser": {
"./sfc": "src/bs-vue-timeline.vue"
},
"repository": {
"type": "git",
"url": "git+https://github.com/x10sv/bs-vue-timeline.git"
},
"bugs": {
"url": "https://github.com/x10sv/bs-vue-timeline/issues"
},
"homepage": "https://github.com/x10sv/bs-vue-timeline"
}