47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "nconf",
|
|
"description": "Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.",
|
|
"version": "0.9.1",
|
|
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
|
|
"contributors": [
|
|
"Matt Hamann <matthew.hamann@gmail.com>",
|
|
"Maciej Małecki <me@mmalecki.com>",
|
|
"Jarrett Cruger <jcrugzz@gmail.com>",
|
|
"Adrien Becchis"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://github.com/flatiron/nconf.git"
|
|
},
|
|
"keywords": [
|
|
"configuration",
|
|
"key value store",
|
|
"plugabble"
|
|
],
|
|
"dependencies": {
|
|
"ini": "^1.3.0",
|
|
"jest": "^24.0.0",
|
|
"yargs": "^10.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"async": "^2.6.1",
|
|
"coveralls": "^3.0.2",
|
|
"eslint": "^5.5.0",
|
|
"istanbul": "^0.4.1",
|
|
"nconf-yaml": "^1.0.2"
|
|
},
|
|
"main": "./lib/nconf",
|
|
"scripts": {
|
|
"test": "jest --verbose",
|
|
"cover": "jest --coverage",
|
|
"coveralls": "cat coverage/lcov.info | coveralls",
|
|
"lint": "eslint ."
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"engines": {
|
|
"node": ">= 0.4.0"
|
|
},
|
|
"license": "MIT"
|
|
}
|