File tree 3 files changed +31
-3
lines changed
3 files changed +31
-3
lines changed Original file line number Diff line number Diff line change
1
+ language : node_js
2
+ node_js :
3
+ - " node"
4
+ - " lts/*"
5
+ - " 8"
6
+ sudo : false
7
+ script :
8
+ - npm run test-cov-ci
9
+ branches :
10
+ only :
11
+ - master
Original file line number Diff line number Diff line change 2
2
3
3
Converting RSQL queries to MongoDB queries.
4
4
5
+ [ ![ NPM Version] [ npm-image ]] [ npm-url ]
6
+ [ ![ Build] [ build-image ]] [ build-url ]
7
+ [ ![ Coverage] [ coveralls-image ]] [ coveralls-url ]
8
+
5
9
## Installation
6
10
7
11
``` bash
76
80
catch (err){
77
81
console .log (err);
78
82
}
79
- ```
83
+ ```
84
+
85
+ ## License
86
+
87
+ [ MIT] ( LICENSE )
88
+
89
+ [ npm-image ] : https://img.shields.io/npm/v/rsql-mongodb.svg
90
+ [ npm-url ] : https://npmjs.org/package/rsql-mongodb
91
+ [ build-image ] : https://img.shields.io/appveyor/ci/Fizcko/rsql-mongodb/master.svg
92
+ [ build-url ] : https://ci.appveyor.com/project/dougwilson/express
93
+ [ coveralls-image ] : https://img.shields.io/coveralls/Fizcko/rsql-mongodb/master.svg
94
+ [ coveralls-url ] : https://coveralls.io/r/Fizcko/rsql-mongodb?branch=master
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " rsql-mongodb" ,
3
- "version" : " 1.1.3 " ,
3
+ "version" : " 1.1.4 " ,
4
4
"description" : " Converting RSQL queries to MongoDB queries" ,
5
5
"main" : " rsql-mongodb.js" ,
6
6
"typings" : " rsql-mongodb.ts" ,
13
13
"scripts" : {
14
14
"lint" : " standard" ,
15
15
"test" : " mocha -- -R spec --bail" ,
16
- "test-cov" : " nyc --reporter=text --reporter=html mocha --recursive --exit"
16
+ "test-cov" : " nyc --reporter=text --reporter=html mocha --recursive --exit" ,
17
+ "test-cov-ci" : " nyc npm test && nyc report --reporter=text-lcov | coveralls"
17
18
},
18
19
"author" : " Fizcko" ,
19
20
"license" : " MIT" ,
34
35
],
35
36
"devDependencies" : {
36
37
"chai" : " 4.2.0" ,
38
+ "coveralls" : " 3.0.4" ,
37
39
"mocha" : " 6.1.4" ,
38
40
"nyc" : " 14.1.1"
39
41
}
You can’t perform that action at this time.
0 commit comments