dotenv-manipulator
Version:
Load, add, update or remove variables from both your .env file and process.env at runtime
54 lines (53 loc) • 1.57 kB
JSON
{
"name": "dotenv-manipulator",
"version": "3.0.1",
"description": "Load, add, update or remove variables from both your .env file and process.env at runtime",
"main": "./dist/index.js",
"files": [
"/dist/**"
],
"scripts": {
"doc": "node ./node_modules/rimraf/bin.js doc/** && node ./node_modules/typedoc/bin/typedoc && node intellisense.js",
"build": "node ./node_modules/rimraf/bin.js dist/** && node ./node_modules/typescript/bin/tsc",
"test": "node ./node_modules/mocha/bin/mocha -r ts-node/register tests/mocha.ts",
"prepublishOnly": "npm run build && npm run test && node intellisense.js"
},
"author": "JiPai",
"license": "MIT",
"repository": "github:JiPaix/dotenv-manipulator",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"chai": "^4.2.0",
"eslint-config-prettier": "^6.11.0",
"mocha": "^8.0.1",
"prettier": "2.0.5",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.17.6",
"typescript": "^3.9.7"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=5.6.0"
},
"keywords": [
"dotenv",
"dotenv-manipulator",
"dotenv-loader",
"dotenv-editor",
"dotenv-parser",
"loader",
"editor",
"parser",
".env",
"runtime",
"process.env"
],
"dependencies": {}
}