-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 KB
/
package.json
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
{
"name": "replace-in-file",
"type": "module",
"version": "8.3.0",
"description": "A simple utility to quickly replace text in one or more files.",
"homepage": "https://github.com/adamreisnz/replace-in-file#readme",
"author": {
"name": "Adam Reis",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adamreisnz/replace-in-file.git"
},
"bugs": {
"url": "https://github.com/adamreisnz/replace-in-file/issues"
},
"keywords": [
"replace",
"text",
"contents",
"file"
],
"main": "index.js",
"bin": "./bin/cli.js",
"types": "./types/index.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"test": "mocha 'src/**/*.spec.js'",
"coverage": "c8 npm run test",
"postcoverage": "open -a \"Google Chrome\" ./coverage/lcov-report/index.html",
"postversion": "git push && git push --tags && npm publish"
},
"dependencies": {
"chalk": "^5.3.0",
"glob": "^10.4.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"c8": "^10.1.2",
"chai": "^5.1.1",
"chai-as-promised": "^8.0.0",
"eslint": "^9.2.0",
"mocha": "^10.4.0"
}
}