-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.1 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "replace-in-files-cli",
"version": "4.0.0",
"description": "Replace matching strings and regexes in files",
"license": "MIT",
"repository": "sindresorhus/replace-in-files-cli",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": {
"types": "./api.d.ts",
"default": "./api.js"
},
"bin": {
"replace-in-files": "./cli.js"
},
"sideEffects": false,
"engines": {
"node": ">=20"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"cli.js",
"api.js",
"api.d.ts"
],
"keywords": [
"cli-app",
"cli",
"replace",
"matching",
"match",
"matches",
"find",
"search",
"string",
"regex",
"regexp",
"pattern",
"files",
"file",
"text",
"contents"
],
"dependencies": {
"escape-string-regexp": "^5.0.0",
"globby": "^14.1.0",
"meow": "^13.2.0",
"normalize-path": "^3.0.0",
"write-file-atomic": "^6.0.0"
},
"devDependencies": {
"ava": "^6.4.1",
"execa": "^9.6.0",
"temp-write": "^6.0.0",
"xo": "^1.2.2"
}
}