1 | {
|
2 | "name": "vue-slider-component",
|
3 | "version": "3.2.24",
|
4 | "description": "A highly customized slider component",
|
5 | "author": "NightCatSama <642163903@qq.com>",
|
6 | "scripts": {
|
7 | "serve": "vue-cli-service serve",
|
8 | "build": "vue-cli-service build",
|
9 | "test:unit": "vue-cli-service test:unit",
|
10 | "lint": "vue-cli-service lint",
|
11 | "build:library": "npm run test:unit && npm run package && npm run package:css && npm run typings && npm run sass",
|
12 | "deploy:docs": "sh scripts/deploy.sh",
|
13 | "package": "vue-cli-service build --mode package --target lib --name vue-slider-component lib/index.ts",
|
14 | "package:css": "NO_EXTRACT_CSS=true npm run package -- --dest dist-css",
|
15 | "prettier": "npx prettier --write lib/**/*.{ts,tsx,scss} src/**/*.{ts,vue}",
|
16 | "sass": "sass lib/theme:theme",
|
17 | "typings": "tsc -p tsconfig.package.json && cp -a lib/typings typings"
|
18 | },
|
19 | "main": "./dist/vue-slider-component.umd.min.js",
|
20 | "files": [
|
21 | "dist",
|
22 | "dist-css",
|
23 | "lib",
|
24 | "src",
|
25 | "typings",
|
26 | "theme",
|
27 | "es"
|
28 | ],
|
29 | "dependencies": {
|
30 | "core-js": "^3.6.5",
|
31 | "vue-property-decorator": "^8.0.0"
|
32 | },
|
33 | "devDependencies": {
|
34 | "@commitlint/config-conventional": "^7.3.1",
|
35 | "@types/chai": "^4.1.0",
|
36 | "@types/mocha": "^5.2.4",
|
37 | "@vue/cli-plugin-babel": "~4.5.8",
|
38 | "@vue/cli-plugin-typescript": "~4.5.8",
|
39 | "@vue/cli-plugin-unit-mocha": "~4.5.8",
|
40 | "@vue/cli-service": "~4.5.8",
|
41 | "@vue/test-utils": "^1.0.0-beta.20",
|
42 | "chai": "^4.1.2",
|
43 | "codemirror": "^5.44.0",
|
44 | "commitlint": "^7.3.2",
|
45 | "lint-staged": "^8.1.0",
|
46 | "markdown-it-anchor": "^5.0.2",
|
47 | "markdown-it-container": "^2.0.0",
|
48 | "prettier": "^2.7.1",
|
49 | "sass": "^1.53.0",
|
50 | "sass-loader": "^8.0.2",
|
51 | "typescript": "~3.9.3",
|
52 | "uslug": "^1.0.4",
|
53 | "vue": "^2.6.6",
|
54 | "vue-markdown-loader": "^2.4.1",
|
55 | "vue-property-decorator": "^8.0.0",
|
56 | "vue-router": "^3.0.2",
|
57 | "vue-template-compiler": "^2.6.6",
|
58 | "vuep": "^0.8.1"
|
59 | },
|
60 | "bugs": {
|
61 | "url": "https://github.com/NightCatSama/vue-slider-component/issues"
|
62 | },
|
63 | "gitHooks": {
|
64 | "pre-commit": "lint-staged",
|
65 | "commit-msg": "commitlint -e $GIT_PARAMS"
|
66 | },
|
67 | "homepage": "https://github.com/NightCatSama/vue-slider-component",
|
68 | "keywords": [
|
69 | "vue",
|
70 | "slider",
|
71 | "vue-slider",
|
72 | "vue-component",
|
73 | "vue-slider-component"
|
74 | ],
|
75 | "license": "MIT",
|
76 | "lint-staged": {
|
77 | "*.{js,ts,tsx,scss}": [
|
78 | "npm run prettier",
|
79 | "git add"
|
80 | ]
|
81 | },
|
82 | "repository": {
|
83 | "type": "git",
|
84 | "url": "git+https://github.com/NightCatSama/vue-slider-component.git"
|
85 | },
|
86 | "typings": "./typings/index.d.ts"
|
87 | }
|