-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.17 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
{
"name": "vue-digit-animation",
"version": "0.3.1",
"description": "A digit animation component with wheel/slide effect for Vue 3",
"main": "lib/vue-digit-animation.cjs.js",
"unpkg": "lib/vue-digit-animation.global.js",
"jsdelivr": "lib/vue-digit-animation.global.js",
"module": "lib/vue-digit-animation.esm-bundler.js",
"author": {
"name": "xiaoluoboding",
"email": "xiaoluoboding@gmail.com"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build:dts": "api-extractor run --local --verbose",
"build:lib": "vue-cli-service build --mode lib --target lib --dest lib src/index.ts",
"bundle": "npm run clean && rollup -c rollup.config.js",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"clean": "rimraf lib/*",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"report": "vue-cli-service build --mode lib --target lib --name vue-digit-animation --dest lib --report src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xiaoluoboding/vue-digit-animation.git"
},
"homepage": "https://vue-digit-animation.vercel.app/",
"files": [
"lib/*.js",
"lib/vue-digit-animation.d.ts",
"vetur/*.json",
"LICENSE",
"README.md"
],
"keywords": [
"typescript",
"javascript",
"vue",
"vue-next",
"vue3",
"digit",
"wheel",
"counter",
"animation"
],
"license": "MIT",
"vetur": {
"tags": "vetur/tags.json",
"attributes": "vetur/attributes.json"
},
"peerDependencies": {
"vue": "^3.0.0-rc.0"
},
"dependencies": {
"numeral": "^2.0.6"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.12.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@rollup/plugin-typescript": "^6.1.0",
"@types/jest": "^24.0.19",
"@types/lodash": "^4.14.165",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^2.0.0-0",
"autoprefixer": "9.0.0",
"axios": "^0.21.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^7.1.0",
"lodash": "^4.17.20",
"postcss": "7.0.35",
"postcss-import": "12.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.33.2",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"rollup-plugin-vue": "^6.0.0-beta.11",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"typescript": "~3.9.3",
"vue": "3.0.2",
"vue-jest": "^5.0.0-0"
}
}