forked from probil/v-mask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "v-mask",
"version": "1.2.0",
"description": "Simple input mask lib for vue.js",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test-coverage": "jest --coverage",
"build": "babel src --out-dir dist --no-comments"
},
"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": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"babel-register": "^6.0.0",
"jest": "^19.0.2"
},
"jest": {
"verbose": true,
"browser": false,
"testEnvironment": "node",
"collectCoverageFrom": [
"src/*.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/demo/",
"/dist/",
"/e2e/"
]
}
}