Files
replace-in-file/package.json
2016-02-16 18:50:33 +13:00

47 lines
1.3 KiB
JSON

{
"name": "replace-in-file",
"version": "1.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": "npm run lint:jshint --silent && npm run lint:jscs --silent",
"lint:jshint": "jshint . --reporter=node_modules/jshint-stylish",
"lint:jscs": "jscs . --reporter=node_modules/jscs-stylish",
"pretest": "npm run lint",
"mocha": "mocha test/**/*.spec.js",
"test": "npm run mocha",
"preversion": "npm run test",
"postversion": "git push && git push --tags && npm publish"
},
"devDependencies": {
"babel-preset-es2015": "^6.5.0",
"bluebird": "^3.3.1",
"chai": "^3.5.0",
"jscs": "^2.9.0",
"jscs-stylish": "^0.3.1",
"jshint": "^2.9.1",
"jshint-stylish": "^2.1.0",
"mocha": "^2.4.5"
}
}