UNPKG

1.47 kBJSONView Raw
1{
2 "name": "replace-in-file",
3 "version": "4.0.0",
4 "description": "A simple utility to quickly replace text in one or more files.",
5 "homepage": "https://github.com/adamreisnz/replace-in-file#readme",
6 "author": {
7 "name": "Adam Reis",
8 "email": "adam@reis.nz",
9 "url": "https://adam.reiz.nz/"
10 },
11 "license": "MIT",
12 "repository": {
13 "type": "git",
14 "url": "https://github.com/adamreisnz/replace-in-file.git"
15 },
16 "bugs": {
17 "url": "https://github.com/adamreisnz/replace-in-file/issues"
18 },
19 "keywords": [
20 "replace",
21 "text",
22 "contents",
23 "file"
24 ],
25 "main": "index.js",
26 "bin": "./bin/cli.js",
27 "scripts": {
28 "istanbul": "babel-node ./node_modules/istanbul/lib/cli cover ./node_modules/mocha/bin/_mocha lib/**/*.spec.js",
29 "test": "npm run istanbul -s",
30 "postversion": "git push && git push --tags && npm publish",
31 "coverage": "open -a \"Google Chrome\" ./coverage/lcov-report/index.html"
32 },
33 "dependencies": {
34 "chalk": "^2.4.2",
35 "glob": "^7.1.3",
36 "yargs": "^13.2.2"
37 },
38 "devDependencies": {
39 "babel-cli": "^6.26.0",
40 "babel-preset-es2015": "^6.24.1",
41 "bluebird": "^3.5.4",
42 "chai": "^4.2.0",
43 "chai-as-promised": "^7.1.1",
44 "dirty-chai": "^2.0.1",
45 "istanbul": "^1.0.0-alpha.2",
46 "mocha": "^6.1.4"
47 },
48 "browserify": {
49 "transform": [
50 [
51 "babelify",
52 {
53 "presets": [
54 "es2015"
55 ]
56 }
57 ]
58 ]
59 }
60}