UNPKG

search-replace

Version:

A simple tool to help you search/replace throughout a codebase.

72 lines (71 loc) 1.8 kB
{ "name": "search-replace", "version": "1.0.3", "description": "A simple tool to help you search/replace throughout a codebase.", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "search-replace": "dist/index.js" }, "scripts": { "lint": "eslint './src/**/*.{js,ts,tsx}'", "test": "jest", "test:watch": "jest --watchAll", "build": "tsc", "watch": "tsc -w", "start": "yarn link && nodemon", "semantic-release": "semantic-release" }, "repository": { "type": "git", "url": "https://github.com/beeman/search-replace.git" }, "keywords": [ "TypeScript", "Package", "Starter" ], "author": { "name": "Bram Borggreve", "email": "borggreve@gmail.com" }, "license": "MIT", "bugs": { "url": "https://github.com/beeman/search-replace/issues" }, "homepage": "https://github.com/beeman/search-replace#readme", "husky": { "hooks": { "pre-commit": "yarn lint && npm test", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", "pre-push": "yarn lint && npm test" } }, "devDependencies": { "@commitlint/cli": "8.3.4", "@commitlint/config-conventional": "8.3.4", "@types/jest": "24.0.25", "@types/node": "12.12.20", "@types/yargs": "15.0.0", "@typescript-eslint/eslint-plugin": "2.15.0", "@typescript-eslint/parser": "2.15.0", "eslint": "6.8.0", "eslint-config-prettier": "6.9.0", "eslint-plugin-prettier": "3.1.2", "husky": "4.0.1", "jest": "24.9.0", "nodemon": "2.0.2", "prettier": "1.19.1", "semantic-release": "15.14.0", "ts-jest": "24.3.0", "typescript": "^3.7.2" }, "files": [ "dist/**/*" ], "dependencies": { "globby": "^11.0.0", "replace-in-file": "^5.0.0", "yargs": "^15.0.2" } }