@ljobse/appsettings-loader
Version:
This allows you to automatically map environment variables typed into your application.
55 lines (54 loc) • 1.4 kB
JSON
{
"name": "@ljobse/appsettings-loader",
"version": "1.0.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"description": "This allows you to automatically map environment variables typed into your application.",
"author": "LJobse",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git://github.com/ljobse/appsettings-loader.git"
},
"exports": {
".": "./lib/index.js"
},
"scripts": {
"build": "tsc",
"deploy": "yarn build & npm publish",
"dev:cli": "node -r source-map-support/register ./lib/cli.js -f ./test.json",
"test": "ts-mocha ./tests/**/*.test.ts"
},
"files": [
"/lib"
],
"bin": {
"appsettings-loader": "./lib/cli.js"
},
"dependencies": {
"@types/node": "^15.12.4",
"yaml": "^2.2.1",
"yargs": "^17.0.1"
},
"devDependencies": {
"@types/chai": "^4.2.19",
"@types/mocha": "^8.2.2",
"@types/yargs": "^17.0.0",
"chai": "^4.3.4",
"mocha": "^9.0.1",
"source-map-support": "^0.5.19",
"ts-mocha": "^8.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"keywords": [
"appsettings",
"settings",
"config",
"json",
"environment",
"variables"
],
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}