replace-in-files/package.json

46 lines
1.2 KiB
JSON

{
"name": "@richardrigutins/replace-in-files",
"version": "1.0.0",
"private": true,
"description": "Replace text in files by matching strings.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/richardrigutins/replace-in-files"
},
"keywords": [
"actions",
"replace"
],
"author": "richardrigutins",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"glob": "^10.3.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.195",
"@types/node": "^20.3.2",
"@typescript-eslint/parser": "^5.60.1",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.43.0",
"eslint-plugin-github": "^4.8.0",
"eslint-plugin-jest": "^27.2.2",
"jest": "^29.5.0",
"js-yaml": "^4.1.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
}
}