UNPKG

replace-in-file

Version:

A simple utility to quickly replace text in one or more files.

52 lines (51 loc) 1.59 kB
{ "name": "replace-in-file", "version": "1.1.1", "description": "A simple utility to quickly replace text in one or more files.", "homepage": "https://github.com/adambuczynski/replace-in-file#readme", "author": { "name": "Adam Buczynski", "email": "me@adambuczynski.com", "url": "http://adambuczynski.com/" }, "license": "MIT", "repository": { "type": "git", "url": "https://github.com/adambuczynski/replace-in-file.git" }, "bugs": { "url": "https://github.com/adambuczynski/replace-in-file/issues" }, "keywords": [ "replace", "text", "contents", "file" ], "main": "index.js", "scripts": { "lint": "npm run lint:jshint -s && npm run lint:jscs -s", "lint:jshint": "jshint . --reporter=node_modules/jshint-stylish", "lint:jscs": "jscs . --reporter=node_modules/jscs-stylish", "pretest": "npm run lint -s", "istanbul": "babel-node ./node_modules/istanbul/lib/cli cover ./node_modules/mocha/bin/_mocha test/**/*.spec.js", "test": "npm run istanbul -s", "preversion": "npm run test -s", "postversion": "git push && git push --tags && npm publish", "coverage": "open -a \"Google Chrome\" ./coverage/lcov-report/index.html" }, "devDependencies": { "babel-cli": "^6.9.0", "babel-preset-es2015": "^6.9.0", "bluebird": "^3.4.0", "chai": "^3.5.0", "chai-as-promised": "^5.3.0", "dirty-chai": "^1.2.2", "istanbul": "^1.0.0-alpha.2", "jscs": "^3.0.0", "jscs-stylish": "^0.3.1", "jshint": "^2.9.2", "jshint-stylish": "^2.2.0", "mocha": "^2.5.3" } }