nconf-lite/package.json

32 lines
706 B
JSON
Raw Normal View History

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.",
2014-11-26 17:52:01 +00:00
"version": "0.7.1",
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",
"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": {
2014-11-26 06:02:42 +00:00
"async": "~0.9.0",
"ini": "1.x.x",
2014-02-05 15:35:24 +00:00
"optimist": "~0.6.0"
2011-04-02 09:13:34 +00:00
},
"devDependencies": {
2014-11-26 06:02:42 +00:00
"vows": "0.8.x"
},
2011-04-02 09:13:34 +00:00
"main": "./lib/nconf",
2012-05-07 03:56:46 +00:00
"scripts": {
"test": "vows test/*-test.js test/**/*-test.js --spec"
},
"engines": {
"node": ">= 0.4.0"
}
2011-04-02 09:13:34 +00:00
}
2012-05-07 03:56:46 +00:00