forked from probil/v-mask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/probil/v-mask/issues"
},
"homepage": "https://github.com/probil/v-mask#readme",
"devDependencies": {
"@babel/core": "7.10.2",
"@babel/preset-env": "7.10.2",
"@vue/test-utils": "1.0.3",
"babel-core": "7.0.0-bridge.0",
"eslint": "7.2.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-jest": "23.13.2",
"eslint-plugin-testcafe": "0.2.1",
"jest": "26.0.1",
"rollup": "2.16.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "6.1.0",
"testcafe": "1.8.6",
"text-mask-addons": "3.8.0",
"text-mask-core": "5.1.2",
"vue": "2.6.11",
"vue-server-renderer": "2.6.11",
"vue-template-compiler": "2.6.11"
}
}