{ "name": "dotenv-tool", "version": "1.1.0", "description": "Tool to read and update .env files", "repository": { "type": "git", "url": "https://gitea.dzienia.pl/shared/dotenv-tool.git" }, "license": "MIT", "author": "Dominik Dzienia ", "exports": { ".": { "import": { "types": "./dist/mjs/index.d.ts", "default": "./dist/mjs/index.js" }, "require": { "types": "./dist/cjs/src/index.d.ts", "default": "./dist/cjs/src/index.js" } } }, "main": "./dist/cjs/src/index.js", "module": "./dist/mjs/index.js", "types": "./dist/mjs/index.d.ts", "bin": "./dist/cjs/src/bin.js", "files": [ "dist" ], "scripts": { "coverage": "jest --coverage", "help": "npx . --help", "preprepare": "rm -rf dist", "prepare": "npx tsc -p tsconfig.json && npx tsc -p tsconfig-esm.json", "postprepare": "node update-versions.js", "prepublishOnly": "git push origin --follow-tags", "test": "jest", "preversion": "npm test", "postversion": "npm publish" }, "dependencies": { "commander": "^11.0.0", "parsimmon": "^1.18.1" }, "devDependencies": { "@types/jest": "^29.5.3", "@types/mock-fs": "^4.13.1", "@types/node": "^20.4.1", "@types/parsimmon": "^1.10.6", "jest": "^29.6.1", "jest-mock-process": "^2.0.0", "mock-fs": "^5.2.0", "ts-jest": "^29.1.1", "typescript": "^5.1.6" }, "engines": { "node": ">=14" } }