nconf-lite/package.json

36 lines
784 B
JSON
Raw Permalink 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.",
2012-07-10 05:29:58 +00:00
"version": "0.6.2",
"author": "Nodejitsu Inc. <info@nodejitsu.com>",
2012-05-07 03:56:46 +00:00
"maintainers": [
"indexzero <charlie@nodejitsu.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": {
2011-05-16 18:08:30 +00:00
"async": "0.1.x",
"ini": "1.x.x",
2011-12-19 23:27:37 +00:00
"optimist": "0.3.x",
2011-07-08 19:37:15 +00:00
"pkginfo": "0.2.x"
2011-04-02 09:13:34 +00:00
},
"devDependencies": {
"vows": "0.6.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