-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
90 lines (90 loc) · 2.62 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
{
"name": "vue-lazy-youtube-video",
"version": "2.4.0",
"private": false,
"description": "Vue.js component for lazyloading YouTube videos",
"keywords": [
"youtube",
"youtube-video",
"vue-youtube",
"lazyload",
"video-lazyload",
"vue"
],
"homepage": "https://github.com/3vilArthas/vue-lazy-youtube-video#readme",
"bugs": {
"url": "https://github.com/3vilArthas/vue-lazy-youtube-video/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/3vilArthas/vue-lazy-youtube-video.git"
},
"license": "MIT",
"author": "Andrew Vasilchuk <[email protected]>",
"files": [
"src",
"dist",
"types/*.d.ts"
],
"main": "dist/vue-lazy-youtube-video.common.js",
"unpkg": "dist/vue-lazy-youtube-video.min.js",
"module": "dist/vue-lazy-youtube-video.esm.js",
"types": "types/index.d.ts",
"style": "dist/style.css",
"scripts": {
"build": "rimraf dist/* && rollup -c build/rollup.config.prod.js && node ./build/style.js",
"dev": "rollup -c build/rollup.config.dev.js --watch",
"format": "prettier --check ./**/*.{js,ts,vue}",
"prettier": "prettier --write ./**/*.{js,ts,vue}",
"test": "npm run test:unit",
"test:unit": "jest --coverage",
"prepare": "npm run build"
},
"dependencies": {
"@types/youtube": "0.0.46",
"vue-typed-emit": "^1.0.0",
"vue-typed-refs": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.12",
"@babel/preset-env": "^7.17.12",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/jest": "^27.5.1",
"@types/lodash.clonedeep": "^4.5.7",
"@vue/test-utils": "^1.3.0",
"commitizen": "^4.2.4",
"cp-file": "^9.1.0",
"cssnano": "^5.1.8",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"lodash.clonedeep": "^4.5.0",
"postcss": "^8.4.13",
"postcss-custom-properties": "^12.1.7",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"rollup": "^2.73.0",
"rollup-plugin-css-only": "^4.3.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4",
"vue": "^2.6.14",
"vue-template-compiler": "^2.6.14"
},
"peerDependencies": {
"vue": "^2.6.12"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}