forked from harthur/replace
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 684 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "replace",
"description": "Command line search and replace utility",
"license": "MIT",
"version": "1.2.2",
"author": "Alessandro Maclaine <almaclaine@gmail.com>",
"main": "replace.js",
"engines": {
"node": ">= 6"
},
"repository": {
"type": "git",
"url": "https://github.com/ALMaclaine/replace"
},
"scripts": {
"test": "node test"
},
"dependencies": {
"chalk": "2.4.2",
"minimatch": "3.0.5",
"yargs": "^15.3.1"
},
"devDependencies": {
"tape": "4.11.0"
},
"bin": {
"replace": "./bin/replace.js",
"search": "./bin/search.js"
},
"keywords": [
"sed",
"grep",
"search",
"replace"
]
}