Spaces:
Sleeping
Sleeping
File size: 1,270 Bytes
2a1c46d | 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 | {
"name": "@nodable/entities",
"version": "2.2.0",
"description": "Entity parser for XML, HTML, External entites with security and NCR control",
"main": "./src/index.js",
"type": "module",
"sideEffects": false,
"types": "./src/index.d.ts",
"scripts": {
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch",
"test:coverage": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
"lint": "eslint src/ test/"
},
"files": [
"src",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nodable/val-parsers.git"
},
"keywords": [
"fast",
"xml",
"html",
"entity",
"entities",
"stringify",
"encode",
"decode",
"ncr",
"security",
"safe",
"performance"
],
"author": "Amit Gupta (https://solothought.com)",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"jest": "^29.7.0"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/nodable"
}
],
"jest": {
"testMatch": [
"**/?(*.)+(spec|test).[jt]s?(x)",
"**/*_spec.[jt]s?(x)"
]
}
} |