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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
| {
| "_from": "html-entities@^2.1.0",
| "_id": "html-entities@2.3.3",
| "_inBundle": false,
| "_integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==",
| "_location": "/html-entities",
| "_phantomChildren": {},
| "_requested": {
| "type": "range",
| "registry": true,
| "raw": "html-entities@^2.1.0",
| "name": "html-entities",
| "escapedName": "html-entities",
| "rawSpec": "^2.1.0",
| "saveSpec": null,
| "fetchSpec": "^2.1.0"
| },
| "_requiredBy": [
| "/webpack-hot-middleware"
| ],
| "_resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz",
| "_shasum": "117d7626bece327fc8baace8868fa6f5ef856e46",
| "_spec": "html-entities@^2.1.0",
| "_where": "D:\\project\\PAM\\PAMapp\\node_modules\\webpack-hot-middleware",
| "author": {
| "name": "Marat Dulin",
| "email": "mdevils@yandex.ru"
| },
| "bugs": {
| "url": "https://github.com/mdevils/html-entities/issues"
| },
| "bundleDependencies": false,
| "deprecated": false,
| "description": "Fastest HTML entities encode/decode library.",
| "devDependencies": {
| "@types/benchmark": "^2.1.0",
| "@types/chai": "^4.2.11",
| "@types/he": "^1.1.1",
| "@types/mocha": "^7.0.2",
| "@types/node": "^13.13.4",
| "@typescript-eslint/eslint-plugin": "^4.6.1",
| "@typescript-eslint/parser": "^4.6.1",
| "benchmark": "^2.1.4",
| "chai": "^4.2.0",
| "entities": "^3.0.1",
| "eslint": "^7.12.1",
| "eslint-config-prettier": "^6.15.0",
| "eslint-plugin-import": "^2.22.1",
| "eslint-plugin-prettier": "^3.1.4",
| "flowgen": "^1.13.0",
| "he": "^1.2.0",
| "husky": "^4.3.6",
| "mocha": "^9.1.3",
| "prettier": "^2.1.2",
| "terser": "^5.6.1",
| "ts-node": "^8.9.1",
| "ttypescript": "^1.5.12",
| "typescript": "^3.8.3",
| "typescript-transform-macros": "^1.1.1"
| },
| "files": [
| "lib",
| "LICENSE"
| ],
| "homepage": "https://github.com/mdevils/html-entities#readme",
| "husky": {
| "hooks": {
| "pre-commit": "npm run lint && npm run test"
| }
| },
| "keywords": [
| "html",
| "html entities",
| "html entities encode",
| "html entities decode",
| "entities",
| "entities encode",
| "entities decode"
| ],
| "license": "MIT",
| "main": "./lib/index.js",
| "name": "html-entities",
| "repository": {
| "type": "git",
| "url": "git+https://github.com/mdevils/html-entities.git"
| },
| "scripts": {
| "benchmark": "TS_NODE_COMPILER=ttypescript ts-node benchmark/benchmark",
| "build": "rm -Rf lib/* && ttsc && npm run remove-unused-declarations && npm run flow-type-gen && npm run minimize-lib-files && npm run test:lib",
| "flow-type-gen": "flowgen --add-flow-header lib/index.d.ts -o lib/index.js.flow",
| "lint": "eslint src/**.ts",
| "minimize-lib-files": "find lib -type f \\( -name '*.js' ! -name index.js \\) | while read fn; do terser $fn -o $fn; done",
| "prepublishOnly": "npm run build",
| "remove-unused-declarations": "find lib -type f \\( -name '*.d.ts' ! -name index.d.ts \\) | xargs rm",
| "test": "TS_NODE_COMPILER=ttypescript mocha --recursive -r ts-node/register test/**/*.ts",
| "test:lib": "TEST_LIB=1 npm run test"
| },
| "sideEffects": false,
| "types": "./lib/index.d.ts",
| "typings": "./lib/index.d.ts",
| "version": "2.3.3"
| }
|
|