File tree 4 files changed +15
-2
lines changed
4 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 1
1
language : node_js
2
2
node_js :
3
3
- " node"
4
+ install :
5
+ - npm install
4
6
script :
5
7
- npm run lint
6
- - npm run build
8
+ - npm run build:docs
9
+ - npm run release
7
10
- npm test
11
+ - codecov
Original file line number Diff line number Diff line change 1
1
# Vue Numeric Input
2
2
3
+ [ ![ npm] ( https://img.shields.io/npm/v/vue-numeric-input.svg?style=flat-square )] ( https://www.npmjs.com/package/vue-numeric-input )
4
+ [ ![ npm] ( https://img.shields.io/npm/dt/vue-numeric-input.svg?style=flat-square )] ( https://www.npmjs.com/package/vue-numeric-input )
5
+ [ ![ Build Status] ( https://travis-ci.org/JayeshLab/vue-numeric-input.svg?branch=master )] ( https://travis-ci.org/JayeshLab/vue-numeric-input )
6
+ [ ![ codecov] ( https://codecov.io/gh/JayeshLab/vue-numeric-input/branch/master/graph/badge.svg )] ( https://codecov.io/gh/JayeshLab/vue-numeric-input )
7
+ [ ![ npm] ( https://img.shields.io/npm/l/vue-numeric-input.svg?style=flat-square )] ( http://opensource.org/licenses/MIT )
8
+
3
9
Number input component based on Vue that is a replacement of native input number with optional control.
4
10
5
11
![ vue-numeric-input] ( https://user-images.githubusercontent.com/36194663/44717643-33e4ea00-aadb-11e8-82bf-e1fdeeea3bb5.gif )
Original file line number Diff line number Diff line change 29
29
"test" : " npm run unit" ,
30
30
"lint" : " eslint --ext .js,.vue src test/unit" ,
31
31
"build:docs" : " webpack --config build/webpack.prod.conf.js" ,
32
- "release" : " webpack --hide-modules -p --progress --config build/webpack.release.conf.js"
32
+ "release" : " webpack --hide-modules -p --progress --config build/webpack.release.conf.js" ,
33
+ "codecov" : " codecov"
33
34
},
34
35
"devDependencies" : {
35
36
"autoprefixer" : " ^7.2.6" ,
43
44
"chai" : " ^4.1.2" ,
44
45
"chalk" : " ^2.0.1" ,
45
46
"clean-webpack-plugin" : " ^0.1.19" ,
47
+ "codecov" : " ^3.0.4" ,
46
48
"copy-webpack-plugin" : " ^4.0.1" ,
47
49
"cross-env" : " ^5.0.1" ,
48
50
"css-loader" : " ^0.28.0" ,
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ module.exports = function karmaConfig (config) {
34
34
dir : './coverage' ,
35
35
reporters : [
36
36
{ type : 'lcov' , subdir : '.' } ,
37
+ { type : 'json' , subdir : '.' } ,
37
38
{ type : 'text-summary' }
38
39
]
39
40
}
You can’t perform that action at this time.
0 commit comments