-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.55 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
{
"name": "vue-match-media",
"version": "1.0.3",
"description": "A Vue.js plugin that offers a consistent, semantic approach to making components media query-aware.",
"main": "dist/index.js",
"module": "src/index.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "jest",
"prepublish": "npm run test && npm run build",
"build": "rollup -c"
},
"jest": {
"unmockedModulePathPatterns": [
"jasmine-expect"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/drenglish/vue-match-media.git"
},
"keywords": [
"Vue",
"media-queries",
"match-media"
],
"author": "Michael Dietz <mdietz@aya.yale.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/drenglish/vue-match-media/issues"
},
"homepage": "https://github.com/drenglish/vue-match-media#readme",
"peerDependencies": {
"vue": "^2.3"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.2",
"eslint": "^4.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jasmine": "^2.9.1",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jasmine-expect": "^3.7.0",
"jest": "^20.0.4",
"match-media-mock": "^0.1.0",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-eslint": "^4.0.0",
"vue": "^2.3.4"
}
}