-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
107 lines (107 loc) · 2.59 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
102
103
104
105
106
107
{
"name": "vue-toastr",
"version": "2.1.2",
"description": "Toastr for Vue.js no jquery dependencies",
"author": "s4l1h",
"scripts": {
"build": "vue-cli-service build",
"test": "vue-cli-service test",
"lint": "vue-cli-service lint",
"demo": "vue-cli-service demo",
"docs": "npm run docs:serve",
"docs:build": "vue-cli-service docs --mode build",
"docs:serve": "vue-cli-service docs --mode serve",
"prepublish": "vue-cli-service lint && vue-cli-service docs --mode build && vue-cli-service build",
"test:unit": "vue-cli-service test:unit"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint && npm run test:unit"
}
},
"main": "dist/vue-toastr.common.js",
"module": "dist/vue-toastr.esm.js",
"unpkg": "dist/vue-toastr.umd.min.js",
"files": [
"dist/vue-toastr.common.js",
"dist/vue-toastr.umd.min.js",
"dist/vue-toastr.umd.js",
"dist/vue-toastr.esm.js",
"src"
],
"dependencies": {},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.8.0",
"@vue/cli-plugin-eslint": "^3.8.0",
"@vue/cli-plugin-unit-jest": "^3.8.0",
"@vue/cli-service": "^3.8.0",
"@vue/eslint-config-prettier": "5.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-vue": "^5.0.0",
"husky": "^3.0.5",
"node-sass": "^4.12.0",
"prettier": "1.18.2",
"sass-loader": "^7.1.0",
"vue": "^2.6.10",
"vue-cli-plugin-p11n": "^0.3.0",
"vue-template-compiler": "^2.6.10"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/prettier"
],
"rules": {
"prettier/prettier": [
"warn",
{
"singleQuote": false,
"semi": false,
"trailingComma": "none"
}
]
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"eslintIgnore": [
"dist/*"
],
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"bugs": {
"url": "https://github.com/s4l1h/vue-toastr/issues"
},
"homepage": "https://github.com/s4l1h/vue-toastr#readme",
"jsdelivr": "dist/vue-toastr.umd.min.js",
"keywords": [
"vuejs",
"vue",
"vue-component",
"component"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/s4l1h/vue-toastr.git"
},
"sideeffects": false
}