-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "vue-component-media-queries",
"version": "1.0.0",
"description": "MatchMedia component library for vue",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"test": "npm run build && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CyberAP/vue-component-media-queries.git"
},
"keywords": [
"vue",
"responsive",
"media",
"media-queries",
"breakpoints",
"match-media",
"ssr",
"nuxt"
],
"author": "Stas Lashmanov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/CyberAP/vue-component-media-queries/issues"
},
"homepage": "https://github.com/CyberAP/vue-component-media-queries#readme",
"devDependencies": {
"@types/expect-puppeteer": "^4.4.3",
"@types/jest": "^26.0.10",
"@types/jest-environment-puppeteer": "^4.3.2",
"@vue/test-utils": "^1.0.3",
"jest": "^26.4.0",
"jest-puppeteer": "^4.4.0",
"puppeteer": "^5.2.1",
"rollup": "^1.32.1",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^26.2.0",
"tslib": "^1.13.0",
"typescript": "^3.9.7",
"vue": "^2.6.0"
},
"peerDependencies": {
"vue": "^2.6.0"
}
}