nconf-lite/package.json

41 lines
934 B
JSON
Raw Normal View History

2011-04-02 09:13:34 +00:00
{
2020-06-02 10:21:30 +00:00
"name": "nconf-lite",
2011-09-19 01:35:55 +00:00
"description": "Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.",
2020-06-02 10:36:58 +00:00
"version": "1.0.1",
2014-11-26 06:31:48 +00:00
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
2017-10-30 14:23:55 +00:00
"contributors": [
"Matt Hamann <matthew.hamann@gmail.com>",
"Maciej Małecki <me@mmalecki.com>",
"Jarrett Cruger <jcrugzz@gmail.com>",
"Adrien Becchis"
],
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"
],
2011-04-02 09:13:34 +00:00
"dependencies": {
2020-06-02 10:36:58 +00:00
"async": "^2.6.3",
"ini": "^1.3.0"
2011-04-02 09:13:34 +00:00
},
"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",
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": {
"node": ">= 0.4.0"
},
"license": "MIT"
2011-04-02 09:13:34 +00:00
}