-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.03 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.03 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
{
"name": "cb-template",
"version": "3.0.1",
"description": "Changba Template Engine",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"files": [
"index.js",
"index.d.ts",
"lib/",
"README.md",
"LICENSE"
],
"scripts": {
"eslint": "eslint *.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChangbaFE/cbT.git"
},
"keywords": [
"template",
"template-engine",
"changba",
"cbT",
"server-side-template",
"template-inheritance",
"html-template",
"node-template"
],
"author": "Hex",
"license": "MIT",
"bugs": {
"url": "https://github.com/ChangbaFE/cbT/issues"
},
"homepage": "https://github.com/ChangbaFE/cbT#readme",
"devDependencies": {
"@babel/preset-env": "^7.28.0",
"babel-jest": "^30.0.4",
"eslint": "^8.57.1",
"jest": "^30.0.4",
"typescript": "^5.8.3"
}
}