-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
100 lines (100 loc) · 2.72 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
{
"name": "simple-vue-timeline",
"version": "2.0.9",
"private": false,
"description": "A timeline vue component",
"scripts": {
"serve": "vue-cli-service serve ./src/demo.ts",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"build-bundle": "vue-cli-service build --target lib --name simple-vue-timeline ./src/main.ts --mode production",
"test:unit": "vue-cli-service test:unit",
"release": "standard-version"
},
"main": "./dist/simple-vue-timeline.common.js",
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js",
"*.ts"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/vue-fontawesome": "^0.1.9",
"bootstrap-vue": "^2.17.3",
"core-js": "^2.6.11",
"fecha": "^4.2.0",
"postcss-import": "^12.0.1",
"postcss-url": "^8.0.0",
"vue": "^2.6.12",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^8.4.1"
},
"devDependencies": {
"@babel/polyfill": "^7.11.5",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^24.0.19",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-plugin-typescript": "^3.12.1",
"@vue/cli-plugin-unit-jest": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-prettier": "^5.1.0",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.31",
"babel-eslint": "^10.1.0",
"bootstrap": "^4.4.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^5.0.0",
"husky": "^4.3.0",
"lint-staged": "^13.1.0",
"mutationobserver-shim": "^0.3.5",
"node-sass": "^7.0.0",
"popper.js": "^1.16.1",
"portal-vue": "^2.1.7",
"prettier": "^1.19.1",
"sass-loader": "^7.3.1",
"standard-version": "^9.0.0",
"typescript": "^3.8.3",
"vue-cli-plugin-bootstrap-vue": "^0.4.0",
"vue-template-compiler": "^2.6.12"
},
"homepage": "https://scottie34.github.io/simple-vue-timeline/",
"keywords": [
"vue",
"timeline",
"bootstrap",
"fontawesome"
],
"license": "MIT",
"lint-staged": {
"*.{js,vue,ts}": [
"vue-cli-service lint",
"git add"
],
"{,src/**/}*.{md,json,js,ts,css,scss}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "https://github.com/scottie34/simple-vue-timeline.git"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}