-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
80 lines (80 loc) · 2.01 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
{
"name": "vue-numeric-input",
"version": "2.0.0",
"private": false,
"description": "Vue Numeric Input Component",
"author": "JayeshLab <[email protected]>",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"build:docs": "vue-cli-service build --dest docs --name vue-numeric-input src/main.js",
"lib": "vue-cli-service build --target lib --name vue-numeric-input src/index.js",
"codecov": "codecov --token=5c23e3b3-9053-4959-91a8-4e92322c433d"
},
"main": "dist/vue-numeric-input.umd.js",
"unpkg": "dist/vue-numeric-input.umd.min.js",
"files": [
"dist/**",
"src/*",
"*.json",
"*.js"
],
"dependencies": {
"core-js": "^3.18.1",
"vue": "^2.6.14"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-plugin-unit-jest": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/test-utils": "^1.2.2",
"babel-eslint": "^10.1.0",
"codecov": "^3.8.3",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"node-sass": "^6.0.0",
"sass-loader": "^10.2.0",
"vue-template-compiler": "^2.6.14"
},
"bugs": {
"url": "https://github.com/JayeshLab/vue-numeric-input/issues"
},
"homepage": "https://github.com/JayeshLab/vue-numeric-input/#readme",
"keywords": [
"input",
"text",
"component",
"number",
"numeric",
"vue",
"vue.js"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JayeshLab/vue-numeric-input.git"
},
"jest": {
"verbose": true,
"preset": "@vue/cli-plugin-unit-jest",
"collectCoverage": true,
"coverageReporters": [
"clover",
"json",
"lcov",
"html",
"text-summary"
],
"collectCoverageFrom": [
"**/*.vue",
"!**/App.vue",
"!**/Test.vue",
"!**/*.js",
"!**/node_modules/**",
"!**/tests/**"
]
}
}