-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.54 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
{
"name": "inplate",
"version": "0.2.5",
"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": "./bld/cli/main.js",
"exports": {
"types": "./bld/library/index.d.ts",
"default": "./bld/library/index.js"
},
"scripts": {
"3": "yarn && yarn-deduplicate && yarn",
"build": "rimraf ./bld && tsc --build",
"lint": "eslint --no-error-on-unmatched-pattern --report-unused-disable-directives . && run-in-every eslint-project --parallel --echo -- eslint --no-error-on-unmatched-pattern --report-unused-disable-directives .",
"lint-prettier": "prettier --check .",
"bare-test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test": "npm run lint-prettier && npm run build && npm run lint && npm run bare-test"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^14.0.0",
"diff": "^8.0.2",
"escape-string-regexp": "^5.0.0",
"glob": "^11.0.3",
"handlebars": "^4.7.8",
"html-entities": "^2.6.0",
"main-function": "^0.1.7",
"smol-toml": "^1.3.4",
"tslib": "^2.8.1",
"yaml": "^2.8.0"
},
"devDependencies": {
"@mufan/eslint-plugin": "^0.2.19",
"@types/jest": "^29.5.14",
"@types/node": "^24.0.3",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"rimraf": "^5.0.10",
"run-in-every": "^0.2.0",
"typescript": "^5.8.3",
"yarn-deduplicate": "^6.0.2"
}
}