-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
93 lines (93 loc) · 2.4 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "hmpl-js",
"version": "2.2.4",
"description": "🐜 Server-oriented customizable templating for JavaScript. Apply SSR, SSG, ISG without robot indexing on any sites without Next.js, Remix, Nuxt.js!",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "tsc --watch",
"lint": "npx eslint src/**/* --fix",
"lint:test": "npx eslint test/**/* --fix",
"prebuild": "npm run lint",
"build": "tsc",
"build:prod": "tsup",
"test": "mocha --require ts-node/esm --experimental-specifier-resolution=node",
"test:watch": "mocha --watch --require ts-node/esm --experimental-specifier-resolution=node",
"coverage": "c8 --reporter=lcov npm run test",
"coverage:default": "c8 npm run test"
},
"files": [
"LICENSE",
"README.md",
"dist/",
"src/"
],
"homepage": "https://hmpl-lang.dev",
"license": "MIT",
"keywords": [
"fetch",
"html",
"template-engine",
"rest",
"ssr",
"server",
"templates",
"templating",
"template-language",
"server-side-rendering",
"static-site-generation",
"template-engines",
"fetch-api",
"server-side",
"language",
"ssg",
"template",
"isg",
"hmpl",
"incremental-static-generation",
"server"
],
"author": "Anton Maklakov",
"repository": {
"type": "git",
"url": "git+https://github.com/hmpl-language/hmpl.git"
},
"bugs": {
"url": "https://github.com/hmpl-language/hmpl/issues"
},
"engines": {
"node": ">=10.12.0"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@babel/register": "^7.25.9",
"@eslint/plugin-kit": "^0.2.3",
"@types/mocha": "^10.0.9",
"@types/node": "^22.9.0",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"c8": "^10.1.2",
"cross-spawn": "^7.0.6",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jsdom": "^25.0.1",
"jsdom-global": "^3.0.2",
"mocha": "^10.8.2",
"nock": "^13.5.6",
"node-fetch": "^2.7.0",
"node-html-parser": "^6.1.13",
"prettier": "^3.3.3",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"dependencies": {
"json5": "^2.2.3"
}
}