-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
81 lines (81 loc) · 2.26 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
{
"name": "lit-ntml",
"version": "4.0.2",
"description": "Inspired by lit-html but for Node.js",
"keywords": [
"html",
"lit-ntml",
"minify",
"npm",
"ntml",
"parse-html",
"prettify",
"tagged-template-literals",
"template",
"templating"
],
"homepage": "https://github.com/motss/lit-ntml",
"bugs": {
"url": "https://github.com/motss/lit-ntml/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:motss/lit-ntml.git"
},
"funding": "https://github.com/motss/lit-ntml?sponsor=1",
"license": "MIT",
"author": {
"name": "Rong Sen Ng (motss)",
"email": "[email protected]",
"url": "https://github.com/motss"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./dist/*": "./dist/*"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist/*.*js.map",
"dist/*.*js",
"dist/*.d.ts.map",
"dist/*.d.ts",
"!**/*bench*/**/*.*",
"!**/*test*/**/*.*"
],
"scripts": {
"bench": "vitest bench",
"build": "npm run clean && tsc",
"clean": "sh $(npm root)/@reallyland/tools/cleanup.sh",
"postinstall": "FILE=\"$(npm root)/@reallyland/tools/postinstall.sh\"; if [ -f \"$FILE\" ]; then sh \"$FILE\"; fi",
"lint": "sh $(npm root)/@reallyland/tools/lint-build.sh -c $(npm root)/@reallyland/tools/.eslintrc.json -s 'src/**/*.ts'",
"lint-commit": "sh $(npm root)/@reallyland/tools/lint-commit.sh",
"lint:build": "sh $(npm root)/@reallyland/tools/lint-build.sh -c $(npm root)/@reallyland/tools/browser/.build.eslintrc.json",
"pre-commit": "sh $(npm root)/@reallyland/tools/pre-commit.sh",
"test": "vitest --coverage",
"version": "sh $(npm root)/@reallyland/tools/generate-changelogs.sh && git add *CHANGELOG.md"
},
"dependencies": {
"parse5": "^7.1.2",
"tslib": "^2.5.0"
},
"devDependencies": {
"@reallyland/tools": "^0.3.5",
"@vitest/coverage-c8": "^0.28.5",
"vitest": "^0.28.5"
},
"engines": {
"node": ">= 16.x",
"npm": ">= 8.x"
},
"publishConfig": {
"access": "public"
},
"readme": "https://github.com/motss/lit-ntml/blob/main/README.md"
}