-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
101 lines (101 loc) · 2.74 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
98
99
100
101
{
"name": "vue-breakpoint-component",
"version": "1.3.0",
"author": "Adi Sahar",
"description": "A renderless Vue.js component for composing CSS breakpoints",
"license": "MIT",
"files": [
"dist"
],
"main": "dist/vueBreakpointComponent.umd.min.js",
"scripts": {
"start": "yarn build --watch",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --name vueBreakpointComponent ./src/main.js",
"build:stats": "yarn build --report",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"link": "cd ./docs && npm link vueBreakpointComponent",
"unlink": "npm unlink",
"unlink-docs": "cd ./docs && npm unlink --no-save vueBreakpointComponent",
"predocs": "npm install && npm link && yarn link",
"docs": "yarn serve --prefix ./docs",
"docs:only": "yarn serve --prefix ./docs",
"deploy": "cd ./docs && yarn deploy",
"prerelease": "yarn build && npm version patch",
"prerelease-minor": "yarn build && npm version minor",
"prerelease-major": "yarn build && npm version major",
"release": "npm publish",
"release-minor": "npm publish",
"release-major": "npm publish",
"postrelease": "git push --follow-tags",
"postrelease-minor": "git push --follow-tags",
"postrelease-major": "git push --follow-tags",
"update-git-remotes": "git remote prune origin"
},
"repository": {
"type": "git",
"url": "https://github.com/adi518/vue-breakpoint-component"
},
"bugs": {
"url": "https://github.com/adi518/vue-breakpoint-component/issues"
},
"peerDependencies": {
"core-js": "^3.x",
"vue": "^2.x"
},
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"monorepo-utils": "^1.0.0",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^4.2.3",
"@vue/cli-plugin-unit-jest": "~4.2.0",
"@vue/cli-service": "^4.2.3",
"@vue/test-utils": "1.0.0-beta.31",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.2.1",
"flush-promises": "^1.0.2",
"vue-cli-plugin-lodash": "^0.1.4",
"vue-template-compiler": "^2.6.12",
"vue": "^2.6.12"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": "off"
},
"parserOptions": {
"parser": "babel-eslint"
},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)"
],
"env": {
"jest": true
}
}
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}