nconf-lite/package.json
Adrien Becchis c1e15681db Upgrading dependencies (#280)
* upgrade yargs and async dependencies.

were breaking change, but no impact according the tests

* upgrade yargs and package-lock.json

* add node 8 to the tested versions

* add node 8 to the allowed failures as requested

* add node 9 to travis build as acceptable failure and remove node 7
2017-11-06 11:15:12 -05:00

45 lines
1.2 KiB
JSON

{
"name": "nconf",
"description": "Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.",
"version": "0.9.1",
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
"contributors": [
"Matt Hamann <matthew.hamann@gmail.com>",
"Maciej Małecki <me@mmalecki.com>",
"Jarrett Cruger <jcrugzz@gmail.com>",
"Adrien Becchis"
],
"repository": {
"type": "git",
"url": "http://github.com/flatiron/nconf.git"
},
"keywords": [
"configuration",
"key value store",
"plugabble"
],
"dependencies": {
"async": "^2.3.0",
"ini": "^1.3.0",
"secure-keys": "^1.0.0",
"yargs": "^10.0.3"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.9.0",
"istanbul": "^0.4.1",
"nconf-yaml": "^1.0.2",
"vows": "0.8.x"
},
"main": "./lib/nconf",
"scripts": {
"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",
"lint": "eslint ."
},
"engines": {
"node": ">= 0.4.0"
},
"license": "MIT"
}