File tree Expand file tree Collapse file tree 6 files changed +23
-11
lines changed Expand file tree Collapse file tree 6 files changed +23
-11
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ charset = utf-8
7
7
trim_trailing_whitespace = true
8
8
insert_final_newline = true
9
9
10
-
11
10
[* .{json,yml} ]
12
11
indent_style = space
13
12
indent_size = 2
Original file line number Diff line number Diff line change 1
- node_modules /
2
- npm-debug.log
1
+ node_modules
2
+ coverage
3
+ .nyc_output
4
+ .DS_Store
5
+ * .log
Original file line number Diff line number Diff line change 1
1
.gitignore
2
-
3
- node_modules /
4
- npm-debug.log
5
-
6
- test /
2
+ test.js
7
3
.travis.yml
4
+ node_modules
5
+ coverage
6
+ .nyc_output
7
+ .DS_Store
8
+ * .log
Original file line number Diff line number Diff line change 4
4
- stable
5
5
- " 4"
6
6
- " 0.12"
7
+
8
+ after_success :
9
+ - ' ./node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls'
Original file line number Diff line number Diff line change 3
3
[ ![ NPM version] [ npm-img ]] [ npm-url ]
4
4
[ ![ Build Status] [ travis-img ]] [ travis-url ]
5
5
[ ![ Dependency Status] [ daviddm-img ]] [ daviddm-url ]
6
+ [ ![ Code coverage status] [ coveralls-img ]] [ coveralls-url ]
6
7
[ ![ XO code style] [ xo-img ]] [ xo-url ]
7
8
8
9
@@ -54,3 +55,5 @@ MIT © [Valentin Semirulnik](https://twitter.com/7rulnik)
54
55
[ npm-url ] : https://www.npmjs.com/package/postcss-flexibility
55
56
[ xo-img ] : https://img.shields.io/badge/code_style-XO-5ed9c7.svg
56
57
[ xo-url ] : https://github.com/sindresorhus/xo
58
+ [ coveralls-img ] : https://coveralls.io/repos/github/7rulnik/postcss-flexibility/badge.svg?branch=master
59
+ [ coveralls-url ] : https://coveralls.io/github/7rulnik/postcss-flexibility?branch=master
Original file line number Diff line number Diff line change 2
2
"name" : " postcss-flexibility" ,
3
3
"version" : " 1.0.1" ,
4
4
"description" : " PostCSS plugin for Flexibility polyfill" ,
5
+ "main" : " index.js" ,
5
6
"keywords" : [
6
7
" postcss" ,
7
8
" css" ,
11
12
" polyfill" ,
12
13
" flexibility"
13
14
],
14
- "author" :
" Valentin Semirulnik <[email protected] >" ,
15
+ "author" :
" Valentin Semirulnik <[email protected] > (https://7rulnik.me/) " ,
15
16
"license" : " MIT" ,
16
17
"repository" : " 7rulnik/postcss-flexibility" ,
17
18
"bugs" : {
23
24
},
24
25
"devDependencies" : {
25
26
"ava" : " ^0.11.0" ,
27
+ "coveralls" : " ^2.11.6" ,
26
28
"eslint" : " ^1.10.2" ,
27
- "eslint-config-xo" : " ^0.9.1"
29
+ "eslint-config-xo" : " ^0.9.1" ,
30
+ "nyc" : " ^5.5.0"
28
31
},
29
32
"scripts" : {
30
- "test" : " ava && eslint *.js"
33
+ "test" : " nyc ava && eslint *.js"
31
34
}
32
35
}
You can’t perform that action at this time.
0 commit comments