-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.04 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
51
52
53
{
"name": "@jswork/replace-in-files",
"private": true,
"version": "1.0.0",
"description": "Replace in files for node.",
"type": "module",
"bin": {
"rifc": "./bin/index.js"
},
"scripts": {
"release": "release-it",
"prepare": "husky",
"pretty": "prettier --write bin"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run pretty"
]
},
"keywords": [
"cli",
"command",
"files",
"replace",
"yaml",
"yml",
"rifc",
"node",
"nodejs",
"rif"
],
"homepage": "https://js.work",
"author": {
"name": "aric",
"email": "1290657123@qq.com"
},
"license": "MIT",
"generator": "@jswork/generator-github",
"devDependencies": {
"husky": "^9.0.6",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4"
},
"dependencies": {
"@jswork/next": "^1.2.10",
"@jswork/next-literal-tmpl": "^1.0.2",
"@jswork/next-yaml-configuration": "^1.0.3",
"commander": "^11.1.0",
"fast-glob": "^3.3.2",
"load-json-file": "^7.0.1",
"replace-in-file": "^7.1.0"
}
}