-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.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
{
"name": "vue-modal4real",
"version": "0.1.4",
"keywords": [
"vue",
"vue3",
"modal"
],
"bugs": {
"url": "https://github.com/gigioSouza/vue-modal4real/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Giovane Souza",
"email": "[email protected]",
"url": "https://github.com/gigioSouza"
},
"repository": {
"type": "git",
"url": "github:gigioSouza/vue-modal4real"
},
"files": [
"dist",
"README.md"
],
"main": "dist/vue-modal4real.umd.js",
"module": "dist/vue-modal4real.es.js",
"types": "dist/vue-modal4real.d.ts",
"scripts": {
"start": "vite",
"build": "vue-tsc --noEmit && vite build && tsc -p tsconfig.types.json && api-extractor run --local --verbose && rm -rf dist/lib",
"serve": "vite preview",
"test:unit": "cross-env NODE_ENV=test && jest --no-cache",
"test:e2e": "start-server-and-test http-get://localhost:3000 cypress:run",
"coverage": "npm run test:unit -- --coverage",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"prepublish": "npm run build"
},
"devDependencies": {
"@microsoft/api-extractor": "7.18.9",
"@types/jest": "27.0.1",
"@types/node": "16.9.1",
"@vitejs/plugin-vue": "^1.6.1",
"@vue/compiler-sfc": "^3.2.6",
"@vue/test-utils": "2.0.0-rc.14",
"cross-env": "7.0.3",
"cypress": "8.4.0",
"jest": "26.6.3",
"start-server-and-test": "1.14.0",
"ts-jest": "26.5.6",
"tslib": "2.3.1",
"typescript": "4.3.5",
"vite": "^2.5.4",
"vue": "^3.2.6",
"vue-jest": "5.0.0-alpha.10",
"vue-tsc": "^0.2.2"
}
}