42 lines
921 B
JSON
42 lines
921 B
JSON
{
|
|
"name": "nconf-lite",
|
|
"description": "Zero dependency hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.",
|
|
"version": "2.0.0",
|
|
"author": "Jonatan Nilsson <jonatan@nilsson.is>",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://github.com/nfp-projects/nconf-lite.git"
|
|
},
|
|
"keywords": [
|
|
"configuration",
|
|
"key value store",
|
|
"plugabble"
|
|
],
|
|
"watch": {
|
|
"test": {
|
|
"patterns": [
|
|
"{lib,test}/*"
|
|
],
|
|
"extensions": "js,mjs",
|
|
"quiet": true,
|
|
"inherit": true
|
|
}
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"eltro": "^1.0.2"
|
|
},
|
|
"main": "./lib/nconf.mjs",
|
|
"scripts": {
|
|
"test": "eltro test/**/*.test.mjs -r dot",
|
|
"test:watch": "npm-watch test",
|
|
"lint": "eslint ."
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"engines": {
|
|
"node": ">= 0.4.0"
|
|
},
|
|
"license": "MIT"
|
|
}
|