-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1016 Bytes
/
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
{
"name": "inplate",
"version": "0.2.2",
"description": "A command-line tool processing files with in-place template.",
"repository": "https://github.com/makeflow/inplate.git",
"license": "MIT",
"author": "vilicvane",
"type": "module",
"bin": {
"inplate": "./program/main.js"
},
"scripts": {
"3": "yarn && yarn-deduplicate && yarn",
"lint": "eslint --no-error-on-unmatched-pattern .",
"lint-prettier": "prettier --check .",
"test": "yarn lint-prettier && yarn lint && yarn bare-test",
"bare-test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"chalk": "^5.2.0",
"commander": "^10.0.1",
"diff": "^5.1.0",
"escape-string-regexp": "^5.0.0",
"glob": "^10.2.4",
"handlebars": "^4.7.7",
"html-entities": "^2.3.3",
"main-function": "^0.1.6"
},
"devDependencies": {
"@mufan/eslint-plugin": "^0.1.81",
"eslint": "^8.47.0",
"jest": "^29.5.0",
"prettier": "^3.0.2",
"yarn-deduplicate": "^6.0.2"
}
}