-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "html-tag-builder",
"displayName": "HTML Tag Builder",
"version": "1.1.0",
"description": "Generate HTML tags and elements from a javascript object using builder patterns",
"main": "src/html-tag-builder.js",
"types": "src/html-tag-builder.d.ts",
"homepage": "https://soulshined.github.io/html-tag-builder",
"repository": {
"url": "https://github.com/soulshined/html-tag-builder"
},
"scripts": {
"build": "tsc",
"test": "@powershell .\\tests\\SpecRunner.html; .\\tests\\HeadlessSpecRunner.html",
"pretest": "npm run clean && npm run build && node ./tests/build-test-html.js",
"clean": "@powershell -Command Remove-Item ./src -Include *.js,*.js.map -Recurse"
},
"keywords": [
"html",
"helper",
"builder",
"attr",
"attributes",
"tag",
"create",
"template",
"url",
"src",
"href",
"helpers",
"generate",
"element",
"elements"
],
"author": "David Freer <[email protected]> (https://davidfreer.me)",
"license": "MIT",
"engines": {
"node": ">=12.18.3"
},
"devDependencies": {
"@types/node": "^15.6.1",
"fthtml": "^5.0.0"
}
}