-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "escape-html-template-tag",
"version": "2.2.3",
"description": "Tag literal strings with this function to html escape interpolated values",
"source": "src/index.ts",
"main": "dist/index.js",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.modern.mjs"
},
"module": "dist/index.module.mjs",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "tsc --noEmit --strict src/* && standard && node test/index.test.js",
"build": "rm -rf dist && microbundle --no-compress -f cjs,umd src/index.cjs.ts && microbundle --no-compress -f es,modern src/index.ts",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/janpot/escape-html-template-tag.git"
},
"keywords": [
"template",
"tag",
"escape",
"html"
],
"files": [
"dist"
],
"author": "Jan Potoms",
"license": "MIT",
"bugs": {
"url": "https://github.com/janpot/escape-html-template-tag/issues"
},
"homepage": "https://github.com/janpot/escape-html-template-tag#readme",
"devDependencies": {
"microbundle": "^0.15.1",
"standard": "17.1.0",
"typescript": "^5.2.2"
},
"standard": {
"ignore": [
"dist"
]
},
"dependencies": {
"caniuse-lite": "^1.0.30001561"
}
}