This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 132
/
package.json
54 lines (54 loc) · 1.66 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
{
"name": "v-mask",
"version": "0.0.0-semantically-released",
"description": "Tiny input mask library for Vue.js based on text-mask-core (~5kb) exposed as directive. No dependencies",
"main": "dist/v-mask.js",
"module": "dist/v-mask.esm.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:e2e": "npx testcafe `npx testcafe -b | paste -sd \",\" -` tests/e2e/**",
"test:e2e:ci": "testcafe chrome:headless tests/e2e/**",
"build": "npm run bundle && npm run bundle:min",
"bundle": "rollup -c build/rollup.conf.js",
"bundle:min": "rollup -c build/rollup.conf.min.js",
"lint": "eslint src tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/probil/v-mask.git"
},
"keywords": [
"vue.js",
"vue",
"vue-mask"
],
"author": "Max Lyashuk <m_lyashuk@ukr.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/probil/v-mask/issues"
},
"homepage": "https://github.com/probil/v-mask#readme",
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/preset-env": "7.25.4",
"@vue/test-utils": "1.3.6",
"babel-core": "7.0.0-bridge.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-testcafe": "0.2.1",
"jest": "27.5.1",
"rollup": "2.79.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "7.0.2",
"testcafe": "3.6.2",
"text-mask-addons": "3.8.0",
"text-mask-core": "5.1.2",
"vue": "2.7.16",
"vue-server-renderer": "2.7.16",
"vue-template-compiler": "2.7.16"
}
}