config
Version:
Configuration control for production node deployments
110 lines (109 loc) • 2.42 kB
JSON
{
"name": "config",
"version": "4.4.1",
"main": "./lib/config.js",
"types": "types/lib/config.d.ts",
"typesVersions": {
"*": {
"async": [
"types/async.d.ts"
],
"async.js": [
"types/async.d.ts"
],
"defer": [
"types/defer.d.ts"
],
"defer.js": [
"types/defer.d.ts"
],
"parser": [
"types/parser.d.ts"
],
"parser.js": [
"types/parser.d.ts"
],
"raw": [
"types/raw.d.ts"
],
"raw.js": [
"types/raw.d.ts"
],
"lib/defer": [
"types/lib/defer.d.ts"
],
"lib/defer.js": [
"types/lib/defer.d.ts"
],
"lib/util": [
"types/lib/util.d.ts"
],
"lib/util.js": [
"types/lib/util.d.ts"
]
}
},
"description": "Configuration control for production node deployments",
"author": "Loren West <open_source@lorenwest.com>",
"homepage": "http://github.com/node-config/node-config.git",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"conf",
"config",
"configuration",
"node-config",
"config-node",
"env",
"environment"
],
"directories": {
"lib": "./lib"
},
"license": "MIT",
"dependencies": {
"json5": "^2.2.3"
},
"devDependencies": {
"@types/node": "^20.11.30",
"c8": "^10.1.3",
"coffeescript": "2.2.4",
"cson": "^3.0.1",
"faceoff": "^1.3.0",
"hjson": "^1.2.0",
"properties": "~1.2.1",
"request": "^2.88.2",
"semver": "5.3.0",
"toml": "^2.0.6",
"ts-node": "^10.9.2",
"typescript": "5.9.3",
"underscore": "^1.8.3",
"x2js": "^2.0.1",
"yaml": "^2.8.2"
},
"repository": {
"type": "git",
"url": "http://github.com/node-config/node-config.git"
},
"engines": {
"node": ">= 20.0.0"
},
"c8": {
"include": [
"*.js",
"lib/**/*.js"
],
"report-dir": "./coverage",
"reporter": "lcov"
},
"scripts": {
"build:types": "tsc -p tsconfig.json",
"checkTypes": "npx -y @arethetypeswrong/cli --pack .",
"types": "npm run build:types && npm run checkTypes",
"prepublishOnly": "npm run build:types",
"ci": "npm run types && npm run test",
"test": "c8 node --no-experimental-strip-types --test",
"benchmarks": "node --allow-natives-syntax --expose-gc benchmarks/index.js"
}
}