forked from RonaldJerez/vue-input-facade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.44 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "vue-input-facade",
"version": "1.3.4-4",
"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/cognitoforms/vue-input-facade.git"
},
"scripts": {
"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",
"build": "npm run build:docs && npm run build:plugin",
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll",
"release": "dotenv release-it --"
},
"main": "dist/vue-input-facade.umd.min.js",
"files": [
"dist/*.js"
],
"devDependencies": {
"@vue/cli-plugin-babel": "^4.3.1",
"@vue/cli-plugin-eslint": "^4.3.1",
"@vue/cli-plugin-unit-jest": "^4.3.1",
"@vue/cli-service": "^4.3.1",
"@vue/eslint-config-prettier": "^5.0.0",
"@vue/test-utils": "^1.0.2",
"babel-eslint": "^10.1.0",
"core-js": "^3.6.5",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^3.2.0",
"dotenv-cli": "^4.0.0",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^5.0.0",
"husky": "^4.2.5",
"prettier": "^1.18.2",
"release-it": "^14.6.1",
"semantic-release": "^17.4.2",
"vue": "^2.6.11",
"vue-cli-plugin-styleguidist": "^4.24.1",
"vue-template-compiler": "^2.6.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-push": "npm run lint && npm run test"
}
},
"keywords": [
"vue",
"vuejs",
"input",
"facade",
"mask",
"masking",
"component",
"directive",
"filter",
"front-end",
"vue-input-facade",
"web"
],
"release-it": {
"hooks": {
"before:git:release": [
"npm run build",
"git add dist/*"
]
},
"github": {
"release": true,
"requireCommits": true
},
"npm": {
"publish": false,
"ignoreVersion": true
}
}
}