forked from beholdr/maska
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.55 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
{
"name": "maska",
"version": "2.1.11",
"description": "Simple zero-dependency input mask for Vue 2/3 or Vanilla JS",
"keywords": [
"mask",
"inputmask",
"vue"
],
"author": "Alexander Shabunevich",
"homepage": "https://beholdr.github.io/maska/",
"repository": {
"url": "https://github.com/beholdr/maska",
"type": "git"
},
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"types": "./dist/types/index.d.ts",
"main": "./dist/maska.umd.js",
"module": "./dist/maska.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/maska.js",
"require": "./dist/maska.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:watch": "vite build --watch",
"build:demo": "vite build --config vite.config.demo.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "ts-standard src",
"lint:fix": "ts-standard --fix src",
"version": "npm run build && npm test"
},
"devDependencies": {
"@testing-library/dom": "^9.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^18.6.4",
"@vitejs/plugin-vue": "^4.2.1",
"@vitest/coverage-c8": "^0.30.1",
"@vue/test-utils": "^2.2.1",
"happy-dom": "^9.10.1",
"ts-standard": "^12.0.0",
"typescript": "^4.6.4",
"vite": "^4.3.3",
"vite-plugin-banner": "^0.7.0",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.30.1",
"vue": "^3.2.41",
"vue-live": "^2.1.0"
}
}