-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
117 lines (117 loc) · 3.36 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "vue-horizontal-timeline",
"version": "0.12.0",
"private": false,
"description": "Just a simple horizontal timeline component made with Vue.js",
"homepage": "https://github.com/guastallaigor/vue-horizontal-timeline#readme",
"author": "Igor Guastalla de Lima",
"scripts": {
"delete-dev:css": "rimraf src/assets/css/style.dev.css",
"build:cleancss": "cleancss src/assets/css/style.dev.css -o src/assets/css/style.min.css --source-map",
"build:minify": "sass src/assets/css/style.scss:src/assets/css/style.dev.css --style=compressed --no-source-map",
"build:autoprefix": "postcss src/assets/css/style.dev.css --replace --use autoprefixer",
"build": "npm run build:minify && npm run build:autoprefix && npm run build:cleancss && npm run delete-dev:css",
"lint": "vue-cli-service lint",
"storybook:build": "build-storybook",
"storybook": "start-storybook -p 6006",
"test:unit": "vue-cli-service test:unit",
"test:watch": "vue-cli-service test:unit --watch",
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"commitmsg": "commitlint -e"
},
"dependencies": {
"vue": "^2.6.12"
},
"devDependencies": {
"@babel/preset-env": "^7.14.2",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@storybook/addon-a11y": "^6.2.9",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-backgrounds": "^6.2.9",
"@storybook/addon-knobs": "^6.2.9",
"@storybook/addon-viewport": "^6.2.9",
"@storybook/vue": "^6.2.9",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-plugin-unit-jest": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/eslint-config-standard": "^6.0.0",
"@vue/test-utils": "^1.2.0",
"autoprefixer": "^10.2.5",
"babel-core": "6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-preset-vue": "^2.0.2",
"clean-css-cli": "^5.3.0",
"commitizen": "^4.2.4",
"core-js": "3.12.1",
"eslint": "^7.26.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.9.0",
"husky": "^6.0.0",
"postcss": "^8.2.15",
"postcss-cli": "^8.3.1",
"rimraf": "^3.0.2",
"sass": "^1.32.13",
"sass-loader": "^11.1.1",
"vue-cli-plugin-storybook": "^2.0.0",
"vue-template-compiler": "^2.6.12"
},
"bugs": {
"url": "https://github.com/guastallaigor/vue-horizontal-timeline/issues"
},
"files": [
"src/*",
"*.json",
"*.js"
],
"keywords": [
"vue",
"vuejs",
"timeline",
"vue-components",
"vue-timeline",
"vue-horizontal-timeline",
"horizontal",
"horizontal-timeline"
],
"license": "MIT",
"main": "./vue-horizontal-timeline.js",
"repository": {
"type": "git",
"url": "https://github.com:guastallaigor/vue-horizontal-timeline.git"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
0,
"never",
"sentence-case"
],
"subject-full-stop": [
0,
"never",
"."
]
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}