forked from YishaiBerg/vue-dynamic-marquee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.6 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
{
"name": "vue-dynamic-marquee",
"version": "0.1.7",
"description": "Marquee component for Vue - repeatedly translate content across wrapper. Completely responsive to after-render changes with many options to customize.",
"author": {
"name": "Yishai Berg",
"email": "ymb123@gmail.com"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --name vue-dynamic-marquee ./src/components/DynamicMarquee.ts",
"lint": "vue-cli-service lint",
"test": "vue-cli-service test:unit"
},
"main": "./dist/vue-dynamic-marquee.common.js",
"files": [
"dist/*"
],
"dependencies": {
"@juggle/resize-observer": "^3.1.2",
"@types/resize-observer-browser": "^0.1.3",
"core-js": "^3.4.4",
"vue": "^2.6.10"
},
"devDependencies": {
"@types/jest": "^24.0.19",
"@vue/cli-plugin-babel": "~4.5.11",
"@vue/cli-plugin-typescript": "~4.5.11",
"@vue/cli-plugin-unit-jest": "~4.5.11",
"@vue/cli-service": "~4.5.11",
"@vue/test-utils": "1.0.0-beta.29",
"raf-stub": "^3.0.0",
"typescript": "~3.9.3",
"vue-template-compiler": "^2.6.10"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"jest": {
"preset": "@vue/cli-plugin-unit-jest/presets/typescript-and-babel"
},
"homepage": "https://yishaiberg.github.io/dynamic-marquee-playground/",
"keywords": [
"vue",
"marquee",
"responsive",
"translate"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/YishaiBerg/vue-dynamic-marquee"
},
"types": "./dist/src/components/DynamicMarquee.d.ts"
}