-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "js-html-renderer",
"version": "0.1.1",
"description": "",
"main": "./dist/index.js",
"scripts": {
"clean": "rm -rf ./dist/*",
"build": "tsc --build .",
"clean:build": "npm run clean && npm run build",
"watch": "tsc --watch",
"test": "npm update && npm run clean:build && npm update --prefix ./test && npm run clean:build:start --prefix ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/faranalytics/js-html-renderer.git"
},
"author": "FAR",
"license": "MIT",
"bugs": {
"url": "https://github.com/faranalytics/js-html-renderer/issues"
},
"homepage": "https://github.com/faranalytics/js-html-renderer#readme",
"engines": {
"npm": ">=10.2.3",
"node": ">=18.19.0"
},
"devDependencies": {
"@types/web": "^0.0.139",
"nodemon": "^3.0.1",
"@eslint/js": "^9.6.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.11.28",
"eslint": "^8.57.0",
"typescript": "^5.7.2",
"typescript-eslint": "^7.15.0"
},
"keywords": [
"engine",
"html",
"renderer",
"template"
]
}