dotenv-multi/package.json
RingOfStorms (Joshua Bell) c254db5b4b add keywords
2020-12-19 18:43:01 -06:00

36 lines
779 B
JSON

{
"name": "@ringofstorms/dotenv-multi",
"version": "0.1.1",
"description": "Dot environment file loader that acts like Create React App's supporting many files with per NODE_ENV/local settings.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prebuild": "npm run clean",
"build": "tsc",
"clean": "rimraf lib *.tgz"
},
"author": "Josh (RingOfStorms)",
"license": "ISC",
"dependencies": {
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"yn": "^4.0.0"
},
"devDependencies": {
"@types/node": "^14.14.14",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
},
"keywords": [
"dotenv",
"env",
".env",
"environment",
"variables",
"config",
"settings"
]
}