-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 1.88 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
{
"name": "hmpl-js",
"version": "2.1.8",
"description": "Server-oriented customizable templating for JavaScript",
"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:package": "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": [
"html",
"api",
"server",
"template",
"language",
"hmpl",
"fetch"
],
"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",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"c8": "^10.1.2",
"cross-spawn": "^7.0.5",
"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",
"node-html-parser": "^6.1.13",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
}
}