-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·97 lines (97 loc) · 3.23 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
{
"name": "vue-video-section",
"version": "1.0.2",
"description": "A simple video header/section component for Vue. Good for video backgrounds and overlaying content on them.",
"author": "John Datserakis <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/johndatserakis/vue-video-section.git"
},
"bugs": {
"url": "https://github.com/johndatserakis/vue-video-section/issues"
},
"keywords": [
"vue",
"video",
"section",
"header",
"background",
"animated"
],
"main": "dist/vue-video-section.umd.js",
"module": "dist/vue-video-section.esm.js",
"unpkg": "dist/vue-video-section.min.js",
"scripts": {
"watch": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build": "npm run test && npm run build:example && npm run build:library",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/vue-video-section.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/vue-video-section.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/vue-video-section.min.js",
"build:library": "rm -rf ./dist npm run build:unpkg & npm run build:es & npm run build:umd & npm run build:unpkg",
"build:example": "rm -rf ./docs && cross-env NODE_ENV=production webpack --progress --hide-modules",
"test": "jest"
},
"dependencies": {
"vue-screen-size": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.2.3",
"@babel/runtime": "^7.3.4",
"@vue/test-utils": "^1.0.0-beta.25",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^2.0.1",
"copy-webpack-plugin": "^5.0.2",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.0.0",
"jest-serializer-vue": "^2.0.2",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"rollup": "^1.7.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-css-only": "^1.0.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-terser": "^4.0.3",
"rollup-plugin-vue": "^4.3.0",
"sass-loader": "^7.0.3",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.1",
"vue": "^2.6.10",
"vue-jest": "^3.0.4",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1",
"\\.(css|less)$": "<rootDir>/test/styleMock.js"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
],
"transformIgnorePatterns": [
"/node_modules/(?!tippy.js/themes/light.css)"
]
}
}