mirror of
https://github.com/zhigang1992/replace-in-file.git
synced 2026-01-12 22:51:48 +08:00
63 lines
1.5 KiB
JSON
63 lines
1.5 KiB
JSON
{
|
|
"name": "replace-in-file",
|
|
"version": "2.6.2",
|
|
"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": {
|
|
"lint": "eslint . --fix",
|
|
"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"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.26.0",
|
|
"babel-preset-es2015": "^6.24.1",
|
|
"bluebird": "^3.5.0",
|
|
"chai": "^4.1.1",
|
|
"chai-as-promised": "^7.1.1",
|
|
"dirty-chai": "^2.0.1",
|
|
"eslint": "^4.5.0",
|
|
"istanbul": "^1.0.0-alpha.2",
|
|
"mocha": "^3.5.0"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^2.1.0",
|
|
"glob": "^7.1.2",
|
|
"yargs": "^8.0.2"
|
|
},
|
|
"browserify": {
|
|
"transform": [
|
|
[
|
|
"babelify",
|
|
{
|
|
"presets": [
|
|
"es2015"
|
|
]
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|