UNPKG

@willsoto/node-konfig-core

Version:

Core configuration pacakge supporting file, static and environment variables

58 lines 1.16 kB
{ "name": "@willsoto/node-konfig-core", "version": "5.0.0", "description": "Core configuration pacakge supporting file, static and environment variables", "keywords": [ "config", "configuration", "yaml", "toml", "json", "configuration-management" ], "license": "Apache-2.0", "author": "Will Soto <willsoto@users.noreply.github.com> (https://github.com/willsoto)", "type": "module", "exports": "./dist/index.js", "typings": "./dist/index.d.ts", "files": [ "README.md", "LICENSE", "dist" ], "c8": { "all": true, "branches": 90, "check-coverage": true, "exclude": [ "src/types.ts" ], "functions": 90, "include": [ "src" ], "lines": 90, "reporter": [ "text", "html" ], "statements": 90 }, "dependencies": { "cockatiel": "~2.0.2", "lodash": "~4.17.21" }, "devDependencies": { "@types/lodash": "4.14.182" }, "volta": { "extends": "../package.json" }, "scripts": { "build": "tsc", "clean": "rimraf dist", "test": "ava", "test:coverage": "c8 ava", "test:watch": "ava --watch" } }