You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
3.5 KiB
113 lines
3.5 KiB
5 months ago
|
{
|
||
|
"_from": "html-entities@^2.3.2",
|
||
|
"_id": "html-entities@2.5.2",
|
||
|
"_inBundle": false,
|
||
|
"_integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==",
|
||
|
"_location": "/html-entities",
|
||
|
"_phantomChildren": {},
|
||
|
"_requested": {
|
||
|
"type": "range",
|
||
|
"registry": true,
|
||
|
"raw": "html-entities@^2.3.2",
|
||
|
"name": "html-entities",
|
||
|
"escapedName": "html-entities",
|
||
|
"rawSpec": "^2.3.2",
|
||
|
"saveSpec": null,
|
||
|
"fetchSpec": "^2.3.2"
|
||
|
},
|
||
|
"_requiredBy": [
|
||
|
"/vue-puzzle-vcode/webpack-dev-server"
|
||
|
],
|
||
|
"_resolved": "https://registry.npmmirror.com/html-entities/-/html-entities-2.5.2.tgz",
|
||
|
"_shasum": "201a3cf95d3a15be7099521620d19dfb4f65359f",
|
||
|
"_spec": "html-entities@^2.3.2",
|
||
|
"_where": "D:\\仁舟项目\\admin_dHBzn\\node_modules\\vue-puzzle-vcode\\node_modules\\webpack-dev-server",
|
||
|
"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": "^4.5.0",
|
||
|
"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.2.2",
|
||
|
"prettier": "^2.1.2",
|
||
|
"terser": "^5.6.1",
|
||
|
"ts-node": "^8.9.1",
|
||
|
"typescript": "^3.8.3"
|
||
|
},
|
||
|
"files": [
|
||
|
"lib",
|
||
|
"src",
|
||
|
"LICENSE"
|
||
|
],
|
||
|
"funding": [
|
||
|
{
|
||
|
"type": "github",
|
||
|
"url": "https://github.com/sponsors/mdevils"
|
||
|
},
|
||
|
{
|
||
|
"type": "patreon",
|
||
|
"url": "https://patreon.com/mdevils"
|
||
|
}
|
||
|
],
|
||
|
"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 benchmark/benchmark",
|
||
|
"build": "rm -Rf lib/* && tsc && 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": "cd lib && find . -type f \\( -name '*.js' \\) | while read fn; do terser --source-map \"content='$fn.map',filename='$fn.map',url='$fn.map'\" $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": "mocha --recursive -r ts-node/register test/**/*.ts",
|
||
|
"test:lib": "TEST_LIB=1 npm run test",
|
||
|
"test:watch": "mocha -w --recursive -r ts-node/register test/**/*.ts"
|
||
|
},
|
||
|
"sideEffects": false,
|
||
|
"types": "./lib/index.d.ts",
|
||
|
"typings": "./lib/index.d.ts",
|
||
|
"version": "2.5.2"
|
||
|
}
|