File tree 6 files changed +301
-11
lines changed
6 files changed +301
-11
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ node_modules/
3
3
README.md
4
4
ROAD_MAP.md
5
5
.gitignore
6
+ .travis.yml
6
7
.eslintrc.json
7
8
yarn-error.log /
8
9
test /
Original file line number Diff line number Diff line change
1
+ sudo : false
2
+ language : node_js
3
+ cache :
4
+ directories :
5
+ - node_modules
6
+ notifications :
7
+ on_failure : change
8
+ on_success : never
9
+ node_js :
10
+ - 12
11
+ - 10
12
+
13
+ script :
14
+ - yarn run eslint:src
15
+ - yarn run eslint:test
16
+ - yarn run test
17
+ - yarn run covarge:all
Original file line number Diff line number Diff line change 3
3
[ ![ install size] ( https://packagephobia.now.sh/badge?p=redel )] ( https://packagephobia.now.sh/result?p=redel )
4
4
[ ![ npm downloads] ( https://img.shields.io/npm/dm/redel.svg?style=flat-square )] ( http://npm-stat.com/charts.html?package=redel )
5
5
![ license: MIT] ( https://img.shields.io/badge/License-MIT-blue.svg )
6
+ [ ![ Build Status] ( https://travis-ci.org/omriLugasi/Redel.svg?branch=master )] ( https://travis-ci.org/omriLugasi/Redel )
7
+ [ ![ Coverage Status] ( https://coveralls.io/repos/github/omriLugasi/Redel/badge.svg )] ( https://coveralls.io/github/omriLugasi/Redel )
6
8
7
9
A middleware library for promise based axios for the browser and nodeJs
8
10
Original file line number Diff line number Diff line change 1
1
# ROADMAP
2
- - CI
3
- - https://coveralls.io/
4
2
- Create your on invirte module
5
3
- configuration for each plugin
6
4
- Informative README stage 2 (english improvement)
11
9
12
10
Options
13
11
----
14
- - cache module
15
- - differ module
12
+ - statistics plugin
13
+ - cache plugin
14
+ - differ plugin
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " redel" ,
3
- "version" : " 0.6.0-beta.6 " ,
3
+ "version" : " 1.0.0 " ,
4
4
"main" : " dist/index.js" ,
5
5
"license" : " MIT" ,
6
6
"description" : " Promise based HTTP client for the browser and node.js" ,
10
10
"test" : " ALLOW_LOG=false mocha --recursive ./test" ,
11
11
"covarge:html" : " nyc --r=html mocha --recursive ./test" ,
12
12
"covarge" : " nyc mocha --recursive ./test" ,
13
+ "covarge:all" : " nyc mocha --recursive ./test && nyc report --reporter=text-lcov | coveralls" ,
13
14
"eslint:src" : " eslint src/" ,
14
15
"eslint:test" : " eslint test/"
15
16
},
47
48
"devDependencies" : {
48
49
"body-parser" : " ^1.19.0" ,
49
50
"chai" : " ^4.2.0" ,
51
+ "coveralls" : " ^3.0.7" ,
50
52
"eslint" : " ^6.5.1" ,
51
53
"eslint-config-airbnb-base" : " ^14.0.0" ,
52
54
"eslint-plugin-import" : " ^2.18.2" ,
You can’t perform that action at this time.
0 commit comments