-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.54 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
{
"name": "tagless",
"description": "Tagless is a library that remove html tags from string, it's useful for sanitizing user input",
"version": "1.0.1",
"import": "./build/mjs/index.js",
"require": "./build/cjs/index.js",
"default": "./build/mjs/index.js",
"types": "./build/types/index.d.ts",
"author": "Mahmoud Ibrahiam",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^20.2.1",
"jest": "^29.5.0",
"rimraf": "^5.0.1",
"terser": "^5.17.4",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"scripts": {
"test": "jest",
"dev": "ts-node src/index.ts",
"preminify": "rimraf build & tsc --project tsconfig.esm.json & tsc --project tsconfig.cjs.json",
"minify": "terser --compress --mangle --output ./build/mjs/index.js -- ./build/mjs/index.js & terser --compress --mangle --output ./build/cjs/index.js -- ./build/cjs/index.js"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "https://github.com/remahmoud/tagless"
},
"homepage": "https://github.com/remahmoud/tagless#readme",
"keywords": [
"tagless",
"html",
"sanitize",
"sanitize-html",
"sanitize-html-string",
"sanitize-html-tags",
"sanitize-html-strings",
"sanitize-html-tag",
"html-sanitizer",
"html-sanitize",
"html-tags",
"html-tag"
]
}