-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
71 lines (71 loc) · 2.08 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "vue-input-facade",
"version": "0.0.0-development",
"description": "A lightweight and dependency free input masking library created specific for Vue",
"author": "Ronald Jerez <[email protected]> (https://github.com/RonaldJerez/)",
"license": "MIT",
"homepage": "https://ronaldjerez.github.io/vue-input-facade",
"repository": {
"type": "git",
"url": "https://github.com/RonaldJerez/vue-input-facade.git"
},
"scripts": {
"build": "npm run build:docs; npm run build:plugin",
"lint": "vue-cli-service lint",
"build:plugin": "vue-cli-service build --target=lib src/plugin.js",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"semantic-release": "semantic-release",
"dev": "vue-cli-service styleguidist --config styleguide/config.js --mode development",
"build:docs": "vue-cli-service styleguidist:build --config styleguide/config.js",
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll"
},
"main": "dist/vue-input-facade.umd.min.js",
"files": [
"dist/*.js"
],
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.15",
"@vue/cli-plugin-eslint": "^4.5.15",
"@vue/cli-plugin-unit-jest": "^4.5.15",
"@vue/cli-service": "^4.5.15",
"@vue/eslint-config-prettier": "^5.0.0",
"@vue/test-utils": "^1.3.0",
"babel-eslint": "^10.1.0",
"core-js": "^3.19.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-vue": "^5.0.0",
"husky": "^4.3.8",
"prettier": "^1.18.2",
"semantic-release": "^17.4.7",
"vue": "^2.6.14",
"vue-cli-plugin-styleguidist": "^4.44.15",
"vue-template-compiler": "^2.6.14"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-push": "npm run lint && git diff HEAD --quiet && npm run test"
}
},
"keywords": [
"vue",
"vuejs",
"input",
"facade",
"mask",
"masking",
"component",
"directive",
"filter",
"front-end",
"vue-input-facade",
"web"
]
}