Merge pull request #195 from AdrieanKhisbe/features/improved-ci
Improved CI
This commit is contained in:
commit
e58d55429d
4 changed files with 12 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -9,3 +9,4 @@ test/fixtures/*.json
|
||||||
node_modules/
|
node_modules/
|
||||||
node_modules/*
|
node_modules/*
|
||||||
npm-debug.log
|
npm-debug.log
|
||||||
|
coverage
|
|
@ -4,6 +4,7 @@ node_js:
|
||||||
- "0.10"
|
- "0.10"
|
||||||
- "0.12"
|
- "0.12"
|
||||||
- "4.1"
|
- "4.1"
|
||||||
|
- "5"
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- travis_retry npm install npm -g
|
- travis_retry npm install npm -g
|
||||||
|
@ -15,6 +16,10 @@ before_install:
|
||||||
script:
|
script:
|
||||||
- npm test
|
- npm test
|
||||||
|
|
||||||
|
after_script:
|
||||||
|
- npm run cover
|
||||||
|
- npm run coveralls
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- node_js: "0.10"
|
- node_js: "0.10"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# nconf
|
# nconf
|
||||||
|
|
||||||
[![Version npm](https://img.shields.io/npm/v/nconf.svg?style=flat-square)](https://www.npmjs.com/package/nconf)[![npm Downloads](https://img.shields.io/npm/dm/nconf.svg?style=flat-square)](https://www.npmjs.com/package/nconf)[![Build Status](https://img.shields.io/travis/indexzero/nconf/master.svg?style=flat-square)](https://travis-ci.org/indexzero/nconf)[![Dependencies](https://img.shields.io/david/indexzero/nconf.svg?style=flat-square)](https://david-dm.org/indexzero/nconf)
|
[![Version npm](https://img.shields.io/npm/v/nconf.svg?style=flat-square)](https://www.npmjs.com/package/nconf)[![npm Downloads](https://img.shields.io/npm/dm/nconf.svg?style=flat-square)](https://www.npmjs.com/package/nconf)[![Build Status](https://img.shields.io/travis/indexzero/nconf/master.svg?style=flat-square)](https://travis-ci.org/indexzero/nconf)[![Coverage](https://img.shields.io/coveralls/indexzero/nconf.svg?style=flat-square)](https://coveralls.io/github/indexzero/nconf)[![Dependencies](https://img.shields.io/david/indexzero/nconf.svg?style=flat-square)](https://david-dm.org/indexzero/nconf)
|
||||||
|
|
||||||
Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.
|
Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.
|
||||||
|
|
||||||
|
|
|
@ -18,11 +18,15 @@
|
||||||
"yargs": "^3.19.0"
|
"yargs": "^3.19.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"coveralls": "^2.11.4",
|
||||||
|
"istanbul": "^0.4.1",
|
||||||
"vows": "0.8.x"
|
"vows": "0.8.x"
|
||||||
},
|
},
|
||||||
"main": "./lib/nconf",
|
"main": "./lib/nconf",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "vows test/*-test.js test/**/*-test.js --spec"
|
"test": "vows test/*-test.js test/**/*-test.js --spec",
|
||||||
|
"cover": "istanbul cover vows -- test/*-test.js test/**/*-test.js --spec",
|
||||||
|
"coveralls": "cat coverage/lcov.info | coveralls"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 0.4.0"
|
"node": ">= 0.4.0"
|
||||||
|
|
Loading…
Reference in a new issue