nconf-lite/package.json

43 lines
922 B
JSON
Raw Permalink Normal View History

2011-04-02 09:13:34 +00:00
{
2020-06-02 10:21:30 +00:00
"name": "nconf-lite",
"description": "Zero dependency hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.",
2021-10-14 09:53:17 +00:00
"version": "2.1.0",
"author": "Jonatan Nilsson <jonatan@nilsson.is>",
2011-04-02 09:13:34 +00:00
"repository": {
"type": "git",
2020-06-02 10:21:30 +00:00
"url": "http://github.com/nfp-projects/nconf-lite.git"
2011-04-02 09:13:34 +00:00
},
2012-05-07 03:56:46 +00:00
"keywords": [
"configuration",
"key value store",
"plugabble"
],
"watch": {
"test": {
"patterns": [
"{lib,test}/*"
],
"extensions": "js,mjs",
"quiet": true,
"inherit": true
}
2011-04-02 09:13:34 +00:00
},
"dependencies": {},
"devDependencies": {
"eltro": "^1.0.2"
},
"main": "./lib/nconf.mjs",
2012-05-07 03:56:46 +00:00
"scripts": {
"test": "eltro test/**/*.test.mjs -r dot",
"test:watch": "npm-watch test",
2017-10-21 20:01:01 +00:00
"lint": "eslint ."
2012-05-07 03:56:46 +00:00
},
"files": [
"lib"
],
2012-05-07 03:56:46 +00:00
"engines": {
2021-06-23 09:39:40 +00:00
"node": ">= 13.0.0"
},
"license": "MIT"
2011-04-02 09:13:34 +00:00
}