Files
replace-in-file/package.json
Adam Reis 6f6cbf8ef1 3.4.3
2019-01-11 19:06:56 +13:00

61 lines
1.4 KiB
JSON

{
"name": "replace-in-file",
"version": "3.4.3",
"description": "A simple utility to quickly replace text in one or more files.",
"homepage": "https://github.com/adamreisnz/replace-in-file#readme",
"author": {
"name": "Adam Reis",
"email": "adam@reis.nz",
"url": "https://adam.reiz.nz/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adamreisnz/replace-in-file.git"
},
"bugs": {
"url": "https://github.com/adamreisnz/replace-in-file/issues"
},
"keywords": [
"replace",
"text",
"contents",
"file"
],
"main": "index.js",
"bin": "./bin/cli.js",
"scripts": {
"istanbul": "babel-node ./node_modules/istanbul/lib/cli cover ./node_modules/mocha/bin/_mocha lib/**/*.spec.js",
"test": "npm run istanbul -s",
"postversion": "git push && git push --tags && npm publish",
"coverage": "open -a \"Google Chrome\" ./coverage/lcov-report/index.html"
},
"dependencies": {
"chalk": "^2.4.1",
"glob": "^7.1.2",
"yargs": "^12.0.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"bluebird": "^3.5.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^5.0.4"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
}
}