query-strings-parser
Version:
Middleware to transform query strings in a format that is recognized by the MongoDB, MySQL and other databases...
18 lines (17 loc) • 315 B
YAML
language: node_js
node_js:
- "13"
- "14"
- "15"
- "16"
sudo: false
before_script:
- npm install && npm install coveralls mocha-lcov-reporter --save-dev
script:
- npm test
after_success:
- nyc report --reporter=text-lcov | coveralls
notifications:
email:
on_success: never
on_failure: always