You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dotenv-tool/package.json

60 lines
1.5 KiB
JSON

{
"name": "dotenv-tool",
"version": "1.3.0",
"description": "Tool to read, parse and update .env files",
"repository": {
"type": "git",
"url": "https://gitea.dzienia.pl/shared/dotenv-tool.git"
},
"license": "MIT",
"author": "Dominik Dzienia <dominik.dzienia@gmail.com>",
"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"
}
}