2011-04-02 09:13:34 +00:00
|
|
|
{
|
|
|
|
"name": "nconf",
|
2011-09-19 01:35:55 +00:00
|
|
|
"description": "Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.",
|
2017-11-04 03:51:07 +00:00
|
|
|
"version": "0.9.1",
|
2014-11-26 06:31:48 +00:00
|
|
|
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
|
2017-10-30 14:23:55 +00:00
|
|
|
"contributors": [
|
|
|
|
"Matt Hamann <matthew.hamann@gmail.com>",
|
|
|
|
"Maciej Małecki <me@mmalecki.com>",
|
|
|
|
"Jarrett Cruger <jcrugzz@gmail.com>",
|
|
|
|
"Adrien Becchis"
|
|
|
|
],
|
2011-04-02 09:13:34 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2011-11-22 00:39:49 +00:00
|
|
|
"url": "http://github.com/flatiron/nconf.git"
|
2011-04-02 09:13:34 +00:00
|
|
|
},
|
2012-05-07 03:56:46 +00:00
|
|
|
"keywords": [
|
|
|
|
"configuration",
|
|
|
|
"key value store",
|
|
|
|
"plugabble"
|
|
|
|
],
|
2011-04-02 09:13:34 +00:00
|
|
|
"dependencies": {
|
2015-08-19 14:58:50 +00:00
|
|
|
"ini": "^1.3.0",
|
2016-02-02 06:21:15 +00:00
|
|
|
"secure-keys": "^1.0.0",
|
2017-11-06 16:15:12 +00:00
|
|
|
"yargs": "^10.0.3"
|
2011-04-02 09:13:34 +00:00
|
|
|
},
|
2011-08-23 00:17:28 +00:00
|
|
|
"devDependencies": {
|
2018-09-27 17:03:17 +00:00
|
|
|
"async": "^2.6.1",
|
|
|
|
"coveralls": "^3.0.2",
|
|
|
|
"eslint": "^5.5.0",
|
2015-12-03 07:03:12 +00:00
|
|
|
"istanbul": "^0.4.1",
|
2017-10-30 14:01:55 +00:00
|
|
|
"nconf-yaml": "^1.0.2",
|
2018-09-27 17:03:17 +00:00
|
|
|
"vows": "^0.8.2"
|
2011-08-23 00:17:28 +00:00
|
|
|
},
|
2011-04-02 09:13:34 +00:00
|
|
|
"main": "./lib/nconf",
|
2012-05-07 03:56:46 +00:00
|
|
|
"scripts": {
|
2015-12-03 07:03:12 +00:00
|
|
|
"test": "vows test/*-test.js test/**/*-test.js --spec",
|
2015-12-03 07:14:24 +00:00
|
|
|
"cover": "istanbul cover vows -- test/*-test.js test/**/*-test.js --spec",
|
2017-10-21 20:01:01 +00:00
|
|
|
"coveralls": "cat coverage/lcov.info | coveralls",
|
|
|
|
"lint": "eslint ."
|
2012-05-07 03:56:46 +00:00
|
|
|
},
|
2018-09-27 17:03:17 +00:00
|
|
|
"files": [
|
|
|
|
"lib"
|
|
|
|
],
|
2012-05-07 03:56:46 +00:00
|
|
|
"engines": {
|
|
|
|
"node": ">= 0.4.0"
|
2015-05-19 09:56:17 +00:00
|
|
|
},
|
|
|
|
"license": "MIT"
|
2011-04-02 09:13:34 +00:00
|
|
|
}
|