mirror of
https://github.com/zhigang1992/replace-in-file.git
synced 2026-04-28 20:55:31 +08:00
51 lines
1.4 KiB
JSON
51 lines
1.4 KiB
JSON
{
|
|
"name": "replace-in-file",
|
|
"version": "2.0.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": "eslint . --fix",
|
|
"istanbul": "babel-node ./node_modules/istanbul/lib/cli cover ./node_modules/mocha/bin/_mocha test/**/*.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.18.0",
|
|
"babel-preset-es2015": "^6.18.0",
|
|
"bluebird": "^3.4.6",
|
|
"chai": "^3.5.0",
|
|
"chai-as-promised": "^6.0.0",
|
|
"dirty-chai": "^1.2.2",
|
|
"eslint": "^3.11.1",
|
|
"istanbul": "^1.0.0-alpha.2",
|
|
"mocha": "^3.2.0"
|
|
},
|
|
"dependencies": {
|
|
"glob": "^7.1.1"
|
|
},
|
|
"browserify": {
|
|
"transform": [["babelify", { "presets": ["es2015"] }]]
|
|
}
|
|
}
|