-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
52 lines (52 loc) · 1.28 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-mq",
"version": "1.0.1",
"description": "Handle media queries easily & build responsive design with Vue",
"main": "dist/vue-mq.js",
"module": "dist/vue-mq.es.js",
"scripts": {
"test": "tyu -- --watch",
"example": "poi",
"build:example": "poi build",
"prepublishOnly": "yarn deploy:gh-pages",
"deploy:gh-pages": "yarn build:example && yarn gh-pages -d examples/dist",
"build": "npx rimraf dist && bili",
"release": "yarn test && yarn build && npx release-it --no-requireCleanWorkingDir"
},
"bili": {
"moduleName": "vueMq",
"format": [
"cjs",
"umd",
"umd-min",
"es"
],
"external": "vue"
},
"poi": {
"entry": "examples/index.js",
"outDir": "examples/dist",
"html": {
"template": "examples/index.html"
},
"publicPath": "/vue-mq/"
},
"author": "Alexandre Geissmann <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/AlexandreBonaventure/vue-mq"
},
"license": "MIT",
"dependencies": {
"json2mq": "^0.2.0"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.16",
"bili": "^3.0.3",
"browser-env": "^3.2.1",
"gh-pages": "^1.1.0",
"match-media-mock": "^0.1.1",
"poi": "^10.1.2",
"tyu": "1.0.5"
}
}