-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.44 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
{
"name": "vue-screen-orientation",
"version": "1.0.8",
"description": "Get easy and reactive access to the Direction, Version and Angle of your screen with vue.js.",
"author": "medeirosDev",
"repository": {
"type": "git",
"url": "git+https://github.com/medeirosDev/vue-screen-orientation.git"
},
"bugs": {
"url": "https://github.com/medeirosDev/vue-screen-orientation/issues"
},
"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-screen-orientation.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/vue-screen-orientation.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/vue-screen-orientation.min.js",
"build:library": "rm -rf ./dist npm run build:umd & 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"
},
"main": "dist/vue-screen-orientation.umd.js",
"module": "dist/vue-screen-orientation.esm.js",
"unpkg": "dist/vue-screen-orientation.min.js",
"browser": {
"./sfc": "src/vue-screen-orientation.vue"
},
"dependencies": {
"screen-orientation-2": "^1.0"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.25",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "^5.1.6",
"css-loader": "^0.28.7",
"file-loader": "^1.1.4",
"minimist": "^1.2.0",
"node-sass": "^4.5.3",
"rollup": "^0.57.1",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-terser": "^4.0.3",
"rollup-plugin-vue": "^4.3.0",
"rollup-plugin-css-only": "^0.4.0",
"sass-loader": "^7.0.1",
"vue": "^2.5.16",
"vue-loader": "^13.0.5",
"vue-template-compiler": "^2.5.16",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"jest-serializer-vue": "^2.0.2",
"vue-jest": "^2.6.0"
},
"keywords": [
"vue",
"screen",
"orientation",
"portrait",
"landscape",
"primary",
"secondary"
],
"license": "MIT"
}