forked from adnaan1703/lean-he
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (42 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (42 loc) · 1.09 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
{
"name": "@node-projects/lean-he-esm",
"version": "3.4.1",
"description": "A robust HTML entities encoder/decoder with full Unicode support.",
"homepage": "https://github.com/node-projects/lean-he",
"main": "./lib/index.js",
"type": "module",
"keywords": [
"string",
"entities",
"entity",
"html",
"encode",
"decode",
"unicode",
"escape",
"unescape"
],
"license": "MIT",
"author": {
"name": "Adnaan Ahmed",
"url": "https://github.com/adnaan1703"
},
"repository": {
"type": "git",
"url": "https://github.com/node-projects/lean-he"
},
"bugs": "https://github.com/node-projects/lean-he/issues",
"scripts": {
"test": "jest && npm run codecov",
"codecov": "codecov -f coverage/coverage-final.json",
"tsc": "tsc",
"prepublishOnly": "npm run tsc && npm run bundle",
"bundle": "esbuild ./lib/index.js --format=esm --minify --platform=neutral --bundle --outfile=./lib/index-min.js"
},
"devDependencies": {
"codecov": "^3.8.1",
"jest": "^26.6.3",
"typescript": "^4.2.4",
"esbuild": "^0.25.10"
}
}