-
Notifications
You must be signed in to change notification settings - Fork 144
/
package.json
92 lines (92 loc) · 2.61 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
{
"name": "vue-toastification",
"version": "2.0.0-rc.5",
"private": false,
"description": "Toasts for Vue made easy!",
"author": "Gustavo Maronato",
"scripts": {
"dev": "MODE=demo yarn vite",
"prebuild": "rimraf ./dist",
"build": "yarn build:code && yarn build:tsc",
"build:code": "MODE=lib vite build",
"build:tsc": "NODE_ENV=production tsc --emitDeclarationOnly --project tsconfig.build.json",
"build:demo": "MODE=demo vite build",
"test:unit": "jest",
"test": "yarn test:unit",
"test:watch": "yarn test --watch",
"lint": "yarn lint:tsc && yarn lint:eslint .",
"lint:fix": "yarn lint --fix",
"lint:tsc": "NODE_ENV=production vue-tsc --noEmit",
"lint:eslint": "NODE_ENV=production eslint --ext vue,ts,tsx",
"lint:staged": "yarn lint:tsc && yarn lint:eslint --fix",
"preview": "NODE_ENV=production vite preview --port 3000 demo",
"prepublishOnly": "yarn lint && yarn test && yarn build",
"prepare": "husky install"
},
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"typings": "dist/types/index.d.ts",
"types": "dist/types/index.d.ts",
"style": "dist/index.css",
"files": [
"src",
"dist"
],
"sideEffects": true,
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/lodash.merge": "^4.6.6",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"@vitejs/plugin-vue": "^2.1.0",
"@vue/test-utils": "^2.0.0-rc.18",
"@vue/vue3-jest": "^27.0.0-alpha.4",
"babel-jest": "^27.4.6",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.4.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.3.2",
"lodash.merge": "^4.6.2",
"prettier": "^2.5.1",
"sass": "^1.49.0",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5",
"vite": "^2.7.13",
"vue": "^3",
"vue-tsc": "^0.31.1"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"yarn lint:staged"
]
},
"peerDependencies": {
"vue": "^3.0.2"
},
"bugs": {
"url": "https://github.com/Maronato/vue-toastification/issues"
},
"homepage": "https://github.com/Maronato/vue-toastification#readme",
"keywords": [
"vue",
"notification",
"toast"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Maronato/vue-toastification.git"
}
}