forked from yuusoft-org/jempl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 813 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 813 Bytes
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
{
"name": "jempl",
"version": "1.0.0",
"description": "A JSON templating engine with conditionals, loops, and custom functions",
"main": "src/index.js",
"types": "types/index.d.ts",
"type": "module",
"files": [
"src",
"types"
],
"repository": {
"type": "git",
"url": "https://github.com/yuusoft-org/jempl.git"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"puty": "~0.0.2",
"vitest": "~3.2.1"
},
"scripts": {
"test": "bunx vitest run --reporter=verbose",
"test:watch": "bunx vitest watch",
"test:coverage": "bunx vitest run --coverage",
"lint": "bunx prettier src -c",
"lint:fix": "bunx prettier src -w",
"types": "bunx tsc --allowJs --declaration --emitDeclarationOnly --skipLibCheck --outDir types src/**/*.js"
}
}