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.
30 lines
679 B
JSON
30 lines
679 B
JSON
{
|
|
"name": "dotenv-tool",
|
|
"version": "1.0.0",
|
|
"description": "Tool to read and update .env files",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"dotenv-tool": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "npx tsc",
|
|
"test": "jest",
|
|
"coverage": "jest --coverage"
|
|
},
|
|
"author": "Dominik Dzienia <dominik.dzienia@gmail.com>",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.3",
|
|
"@types/node": "^20.4.1",
|
|
"@types/parsimmon": "^1.10.6",
|
|
"jest": "^29.6.1",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"dependencies": {
|
|
"@bconnorwhite/module": "^2.0.2",
|
|
"commander": "^11.0.0",
|
|
"parsimmon": "^1.18.1"
|
|
}
|
|
}
|