nconf-lite/package.json

37 lines
942 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.",
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",
"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",
"yargs": "^3.19.0"
2011-04-02 09:13:34 +00:00
},
"devDependencies": {
"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-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",
"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"
},
"license": "MIT"
2011-04-02 09:13:34 +00:00
}