This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
79 lines (79 loc) · 2.16 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
{
"name": "empathy-vue-carousel",
"version": "0.1.1",
"description": "Vue component of an awesome configurable carousel",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint demo src tests",
"test:unit": "vue-cli-service test:unit",
"commit": "git-cz",
"release": "standard-version --no-verify",
"release:alpha": "standard-version --no-verify --prerelease alpha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/empathyco/vue-carousel"
},
"keywords": [
"vue",
"vue-component",
"vue-carousel"
],
"homepage": "https://github.com/empathyco/vue-carousel#readme",
"dependencies": {
"core-js": "^3.4.0",
"vue": "^2.6.10",
"vue-class-component": "^7.0.2",
"vue-property-decorator": "^8.3.0"
},
"devDependencies": {
"@types/jest": "^24.0.22",
"@typescript-eslint/eslint-plugin": "~2.22.0",
"@typescript-eslint/parser": "~2.22.0",
"@vue/cli-plugin-eslint": "~4.1.0",
"@vue/cli-plugin-typescript": "~4.1.0",
"@vue/cli-plugin-unit-jest": "^4.0.5",
"@vue/cli-service": "^4.0.5",
"@vue/eslint-config-prettier": "^5.0.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"commitizen": "~4.0.3",
"cz-conventional-changelog": "~3.1.0",
"eslint": "^6.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "~23.7.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^5.0.0",
"lint-staged": "^10.0.7",
"node-sass": "^4.13.0",
"prettier": "^1.19.1",
"sass-loader": "^8.0.0",
"standard-version": "^7.0.0",
"ts-jest": "^24.0.2",
"typescript": "^3.7.4",
"vue-template-compiler": "^2.6.10"
},
"peerDependencies": {
"vue": "^2.6.10"
},
"files": [
"dist/**/*"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"./**/*.{vue,js,jsx,ts,tsx}": [
"npm run lint"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}