basant307/AI_Governance_Project
045
1{2 "name": "html-void-elements",3 "version": "3.0.0",4 "description": "List of HTML void tag names",5 "license": "MIT",6 "keywords": [7 "html",8 "void",9 "tag",10 "name",11 "element",12 "tagname",13 "w3c",14 "whatwg"15 ],16 "repository": "wooorm/html-void-elements",17 "bugs": "https://github.com/wooorm/html-void-elements/issues",18 "funding": {19 "type": "github",20 "url": "https://github.com/sponsors/wooorm"21 },22 "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",23 "contributors": [24 "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"25 ],26 "sideEffects": false,27 "type": "module",28 "main": "index.js",29 "types": "index.d.ts",30 "files": [31 "index.d.ts",32 "index.js"33 ],34 "devDependencies": {35 "@types/node": "^20.0.0",36 "c8": "^7.0.0",37 "hast-util-from-html": "^1.0.0",38 "hast-util-select": "^5.0.0",39 "hast-util-to-string": "^2.0.0",40 "node-fetch": "^3.0.0",41 "prettier": "^2.0.0",42 "remark-cli": "^11.0.0",43 "remark-preset-wooorm": "^9.0.0",44 "type-coverage": "^2.0.0",45 "typescript": "^5.0.0",46 "xo": "^0.54.0"47 },48 "scripts": {49 "prepack": "npm run build && npm run format",50 "generate": "node --conditions development build.js",51 "build": "tsc --build --clean && tsc --build && type-coverage",52 "format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",53 "test-api": "node --conditions development test.js",54 "test-coverage": "c8 --check-coverage --100 --reporter lcov npm run test-api",55 "test": "npm run generate && npm run build && npm run format && npm run test-coverage"56 },57 "prettier": {58 "tabWidth": 2,59 "useTabs": false,60 "singleQuote": true,61 "bracketSpacing": false,62 "semi": false,63 "trailingComma": "none"64 },65 "xo": {66 "prettier": true67 },68 "remarkConfig": {69 "plugins": [70 "preset-wooorm"71 ]72 },73 "typeCoverage": {74 "atLeast": 100,75 "detail": true,76 "strict": true,77 "ignoreCatch": true78 }79}80 