This repository has been archived by the owner on Oct 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.06 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
{
"name": "vue-video-hero",
"version": "2.0.2",
"description": "A responsive video section with content overlay, all with sensible defaults",
"author": {
"name": "Karim Daghari"
},
"keywords": [
"vue",
"vuejs",
"hero",
"jumbotron",
"video",
"overlay",
"responsive",
"youtube",
"vimeo"
],
"license": "MIT",
"homepage": "https://github.com/kdaghari/vue-video-hero",
"repository": {
"url": "https://github.com/kdaghari/vue-video-hero"
},
"bugs": {
"url": "https://github.com/kdaghari/vue-video-hero/issues"
},
"main": "dist/vue-video-hero.ssr.js",
"module": "dist/vue-video-hero.esm.js",
"unpkg": "dist/vue-video-hero.min.js",
"files": [
"dist/*",
"src/**/*.vue"
],
"scripts": {
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife",
"test": "jest"
},
"dependencies": {
"bulma": "^0.7.5",
"vue-vimeo-player": "0.0.10"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^6.26.3",
"babel-jest": "^24.9.0",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.2.0",
"jest": "^24.9.0",
"minimist": "^1.2.0",
"rollup": "^1.12.1",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-vue": "^5.0.0",
"vue": "^2.6.10",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.10"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
}
}
}