nconf-lite/package.json

47 lines
1.1 KiB
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": {
"coveralls": "^3.0.2",
"eslint": "^6.0.0",
2015-12-03 07:03:12 +00:00
"istanbul": "^0.4.1",
"jest": "^24.0.0",
"nconf-yaml": "^1.0.2"
},
2011-04-02 09:13:34 +00:00
"main": "./lib/nconf",
2012-05-07 03:56:46 +00:00
"scripts": {
"test": "jest --verbose",
"cover": "jest --coverage",
2017-10-21 20:01:01 +00:00
"coveralls": "cat coverage/lcov.info | coveralls",
"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
}