-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
72 lines (72 loc) · 2.03 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
{
"name": "vuetify3-dialog",
"version": "1.5.4",
"description": "Vue 3 & Vuetify 3 plugin to create dialogs, toasts and bottom-sheets with Promises.",
"keywords": [
"vue",
"vuetify",
"dialogs",
"promises",
"vuetify dialogs",
"snackbars",
"toasts",
"confirm"
],
"author": "ThomasLeconte",
"homepage": "https://github.com/ThomasLeconte/vuetify3-dialog/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/ThomasLeconte/vuetify3-dialog"
},
"bugs": "https://github.com/ThomasLeconte/vuetify3-dialog/issues",
"license": "ISC",
"main": "lib/index.js",
"type": "module",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
}
},
"scripts": {
"test-server": "cd cypress/test-server && npm run dev",
"e2e": "cypress run --browser chrome --headless --spec \"cypress/e2e/**/*.cy.ts\"",
"test": "start-server-and-test test-server http://localhost:3000 e2e",
"build": "npm run format && npm run lint && rollup -c",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add .",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/node": "^18.15.0",
"@types/jest": "^29.5.3",
"babel-jest": "^29.6.2",
"cypress": "^12.17.3",
"jest": "^29.6.2",
"jest-environment-node": "^29.6.2",
"prettier": "^3.0.0",
"rollup": "^3.27.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-typescript2": "^0.35.0",
"rollup-plugin-vue": "^6.0.0",
"start-server-and-test": "^2.0.0",
"ts-jest": "^29.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5",
"vue": "^3.2.0",
"vue-template-compiler": "^2.7.14",
"vuetify": "^3.5.17"
},
"peerDependencies": {
"vue": "^3.2.0",
"vuetify": "^3.4.0"
}
}