@nivinjoseph/n-config
Version:
Configuration management library
49 lines (48 loc) • 1.63 kB
JSON
{
"name": "@nivinjoseph/n-config",
"version": "2.0.1",
"description": "Configuration management library",
"packageManager": "yarn@4.0.2",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"ts-compile": "tsc -p .",
"ts-lint": "eslint . --ext .ts",
"ts-build": "yarn ts-compile && npm run ts-lint",
"ts-build-dist": "yarn ts-build && tsc -p ./dist",
"test": "yarn ts-build && node --test --enable-source-maps ./test",
"publish-package": "yarn ts-build-dist && git add . && git commit -m 'preparing to publish new version' && npm version patch && git push && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nivinjoseph/n-config.git"
},
"keywords": [
"config"
],
"author": "NiviN",
"license": "MIT",
"bugs": {
"url": "https://github.com/nivinjoseph/n-config/issues"
},
"homepage": "https://github.com/nivinjoseph/n-config#readme",
"devDependencies": {
"@types/node": "^20.10",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-plugin-require-extensions": "^0.1.3",
"typescript": "^5.3.3"
},
"dependencies": {
"@nivinjoseph/n-defensive": "^2.0.1",
"@nivinjoseph/n-exception": "^2.0.1",
"@nivinjoseph/n-ext": "^2.0.1",
"@nivinjoseph/n-util": "^2.0.1"
},
"engineStrict": true,
"engines": {
"node": ">=20.10"
}
}