forked from NightCatSama/vue-slider-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.55 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
{
"name": "vue-slider-component",
"version": "3.2.22",
"description": "A highly customized slider component",
"author": "NightCatSama <[email protected]>",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"build:library": "npm run test:unit && npm run package && npm run package:css && npm run typings && npm run sass",
"deploy:docs": "sh scripts/deploy.sh",
"package": "vue-cli-service build --mode package --target lib --name vue-slider-component lib/index.ts",
"package:css": "NO_EXTRACT_CSS=true npm run package -- --dest dist-css",
"prettier": "npx prettier --write lib/**/*.{ts,tsx,scss} src/**/*.{ts,vue}",
"sass": "sass lib/theme:theme",
"typings": "tsc -p tsconfig.package.json && cp -a lib/typings typings"
},
"main": "./dist/vue-slider-component.umd.min.js",
"files": [
"dist",
"dist-css",
"lib",
"src",
"typings",
"theme",
"es"
],
"dependencies": {
"core-js": "^3.6.5",
"vue-property-decorator": "^8.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^7.3.1",
"@types/chai": "^4.1.0",
"@types/mocha": "^5.2.4",
"@vue/cli-plugin-babel": "~4.5.8",
"@vue/cli-plugin-typescript": "~4.5.8",
"@vue/cli-plugin-unit-mocha": "~4.5.8",
"@vue/cli-service": "~4.5.8",
"@vue/test-utils": "^1.0.0-beta.20",
"chai": "^4.1.2",
"codemirror": "^5.44.0",
"commitlint": "^7.3.2",
"lint-staged": "^8.1.0",
"markdown-it-anchor": "^5.0.2",
"markdown-it-container": "^2.0.0",
"prettier": "^2.7.1",
"sass": "^1.53.0",
"sass-loader": "^8.0.2",
"typescript": "~3.9.3",
"uslug": "^1.0.4",
"vue": "^2.6.6",
"vue-markdown-loader": "^2.4.1",
"vue-property-decorator": "^8.0.0",
"vue-router": "^3.0.2",
"vue-template-compiler": "^2.6.6",
"vuep": "^0.8.1"
},
"bugs": {
"url": "https://github.com/NightCatSama/vue-slider-component/issues"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
},
"homepage": "https://github.com/NightCatSama/vue-slider-component",
"keywords": [
"vue",
"slider",
"vue-slider",
"vue-component",
"vue-slider-component"
],
"license": "MIT",
"lint-staged": {
"*.{js,ts,tsx,scss}": [
"npm run prettier",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/NightCatSama/vue-slider-component.git"
},
"typings": "./typings/index.d.ts"
}