-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.69 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.69 KB
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
{
"name": "@cmath10/jmask",
"version": "0.2.4",
"description": "Pure JavaScript mask",
"license": "MIT",
"author": "zaytsev.cmath10@gmail.com",
"type": "module",
"types": "dist/jmask.d.ts",
"exports": {
".": {
"types": "./dist/jmask.d.ts",
"import": "./dist/jmask.mjs",
"require": "./dist/jmask.cjs",
"default": "./dist/jmask.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "vite build",
"coverage": "yarn coverage:clean && yarn coverage:unit:raw && yarn coverage:e2e:raw && yarn coverage:merge",
"coverage:clean": "node scripts/clean-coverage.mjs",
"coverage:e2e": "yarn test:e2e --coverage && node scripts/copy-coverage.mjs e2e",
"coverage:e2e:raw": "COVERAGE_TEXT_REPORT=0 yarn test:e2e --coverage && node scripts/copy-coverage.mjs e2e",
"coverage:merge": "node scripts/merge-coverage.mjs",
"coverage:unit": "yarn test:unit --coverage && node scripts/copy-coverage.mjs unit",
"coverage:unit:raw": "COVERAGE_TEXT_REPORT=0 yarn test:unit --coverage && node scripts/copy-coverage.mjs unit",
"lint": "eslint src/** tests/**",
"lint:fix": "eslint --fix src/** tests/**",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"sandbox:serve": "cd ./sandbox && vite --host",
"test": "yarn test:unit && yarn test:e2e",
"test:e2e": "vitest run --config vitest.e2e.ts",
"test:unit": "vitest run --config vitest.config.ts",
"typecheck": "tsc --noEmit -p tsconfig.json"
},
"keywords": [
"mask"
],
"browserslist": [
"> 1%",
"last 2 versions"
],
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/user-event": "^14.6.1",
"@vitest/browser-playwright": "^4.1.0",
"@vitest/coverage-v8": "^4.1.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^25.5.0",
"eslint": "^10.0.3",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.4.0",
"nyc": "^18.0.0",
"playwright": "^1.58.2",
"standard-version": "^9.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vite": "^8.0.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.0",
"vue-eslint-parser": "^10.4.0"
},
"homepage": "https://github.com/cmath10/jmask#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cmath10/jmask.git"
},
"bugs": {
"url": "https://github.com/cmath10/jmask/issues"
},
"publishConfig": {
"access": "public"
}
}