generated from HugoDF/node-mit-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.01 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.01 KB
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-esc",
"version": "0.1.0",
"description": "JavaScript Template Literal Tag that converts to HTML-escaped content. Eg. `` html`<div>${myVar}</div>` ``",
"type": "module",
"main": "html-esc.js",
"module": "html-esc.js",
"sideEffects": false,
"scripts": {
"dev": "node serve.js",
"test": "node --test --experimental-test-coverage",
"lint": "npm run format -- -c",
"format": "prettier --write './**/*.{js,json,yml,md,html}'"
},
"homepage": "https://github.com/HugoDF/html-esc",
"repository": {
"type": "git",
"url": "git+https://github.com/HugoDF/html-esc.git"
},
"bugs": {
"url": "https://github.com/HugoDF/html-esc/issues"
},
"author": {
"name": "HugoDF",
"url": "https://codewithhugo.com/about"
},
"keywords": [
"html",
"escape",
"literal",
"literals",
"template",
"tagged",
"web components",
"no build"
],
"files": [
"./html-esc.js"
],
"license": "MIT",
"devDependencies": {
"prettier": "3.3.3"
}
}