-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 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
{
"name": "ghtml",
"description": "Replace your template engine with fast JavaScript by leveraging the power of tagged templates.",
"author": "Gürgün Dayıoğlu",
"license": "MIT",
"version": "3.1.0",
"type": "commonjs",
"bin": "./bin/src/index.js",
"main": "./src/index.js",
"exports": {
".": "./src/index.js",
"./*.js": "./src/*.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"benchmark": "node bench/index.js",
"test": "npm run lint && c8 --100 node --test test/*.js",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint --fix . && prettier --write .",
"typescript": "tsc src/*.js --allowJs --declaration --emitDeclarationOnly --skipLibCheck"
},
"dependencies": {
"glob": "^10.4.5"
},
"devDependencies": {
"@fastify/pre-commit": "^2.1.0",
"c8": "^10.1.2",
"globals": "^15.11.0",
"grules": "^0.25.10",
"tinybench": "^3.0.0",
"typescript": ">=5.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gurgunday/ghtml.git"
}
}