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-08-16 03:59:31 +00:00
|
|
|
"version": "0.8.5",
|
2014-11-26 06:31:48 +00:00
|
|
|
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
|
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
|
|
|
"async": "^1.4.0",
|
|
|
|
"ini": "^1.3.0",
|
2016-02-02 06:21:15 +00:00
|
|
|
"secure-keys": "^1.0.0",
|
2015-08-19 15:03:38 +00:00
|
|
|
"yargs": "^3.19.0"
|
2011-04-02 09:13:34 +00:00
|
|
|
},
|
2011-08-23 00:17:28 +00:00
|
|
|
"devDependencies": {
|
2015-12-03 07:14:24 +00:00
|
|
|
"coveralls": "^2.11.4",
|
2015-12-03 07:03:12 +00:00
|
|
|
"istanbul": "^0.4.1",
|
2014-11-26 06:02:42 +00:00
|
|
|
"vows": "0.8.x"
|
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",
|
|
|
|
"coveralls": "cat coverage/lcov.info | coveralls"
|
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
|
|
|
}
|