This repository has been archived by the owner on Jan 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.78 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
{
"babel": {
"presets": [
"@vue/app"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"ie 11",
"not ie <= 8"
],
"contributors": [
{
"email": "[email protected]",
"name": "Junyu Pu"
},
{
"email": "[email protected]",
"name": "Kevin Peters"
},
{
"email": "[email protected]",
"name": "Florian Wendelborn"
}
],
"dependencies": {},
"description": "A Vue.js notification plugin with easy installation and usage",
"devDependencies": {
"@vue/cli-plugin-babel": "^3.1.1",
"@vue/cli-plugin-eslint": "^3.1.5",
"@vue/cli-service": "^3.1.4",
"@vue/eslint-config-prettier": "^4.0.1",
"husky": "^1.2.0",
"node-sass": "^4.10.0",
"precise-commits": "^1.0.2",
"prettier": "^1.15.2",
"sass-loader": "^7.1.0",
"vue": "^2.5.17",
"vue-template-compiler": "^2.5.17"
},
"eslintConfig": {
"extends": [
"plugin:vue/essential",
"@vue/prettier"
],
"root": true
},
"files": [
"dist/"
],
"keywords": [
"vue",
"component",
"notification",
"responsive"
],
"license": "MIT",
"main": "dist/vue-yodify.umd.js",
"name": "@3yourmind/vue-yodify",
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": true,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": true
},
"scripts": {
"build": "YODIFY_BUILD_LIBRARY=1 vue-cli-service build --target lib --name vue-yodify source/index.js",
"lint": "vue-cli-service lint",
"postpublish": "git tag $(node -p \"require('./package.json').version\") && git push --tags",
"precommit": "precise-commits && npm run lint",
"prepublishOnly": "npm run build",
"serve": "vue-cli-service serve",
"tagversion": "git tag $(node -p \"require('./package.json').version\")"
},
"version": "0.2.9"
}