package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "mathml-tag-names",
  3. "version": "2.1.3",
  4. "description": "List of known MathML tag-names",
  5. "license": "MIT",
  6. "keywords": [
  7. "MathML",
  8. "math",
  9. "tag",
  10. "name",
  11. "element",
  12. "tagname",
  13. "w3c"
  14. ],
  15. "repository": "wooorm/mathml-tag-names",
  16. "bugs": "https://github.com/wooorm/mathml-tag-names/issues",
  17. "funding": {
  18. "type": "github",
  19. "url": "https://github.com/sponsors/wooorm"
  20. },
  21. "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  22. "contributors": [
  23. "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
  24. ],
  25. "main": "index.json",
  26. "files": [
  27. "index.json"
  28. ],
  29. "dependencies": {},
  30. "devDependencies": {
  31. "bail": "^1.0.0",
  32. "browserify": "^16.0.0",
  33. "concat-stream": "^2.0.0",
  34. "hast-util-select": "^3.0.0",
  35. "hast-util-to-string": "^1.0.0",
  36. "prettier": "^1.0.0",
  37. "rehype-parse": "^6.0.0",
  38. "remark-cli": "^7.0.0",
  39. "remark-preset-wooorm": "^6.0.0",
  40. "tape": "^4.0.0",
  41. "tinyify": "^2.0.0",
  42. "unified": "^8.0.0",
  43. "xo": "^0.25.0"
  44. },
  45. "scripts": {
  46. "generate": "node build",
  47. "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
  48. "build-bundle": "browserify index.json -s mathML -o mathml-tag-names.js",
  49. "build-mangle": "browserify index.json -s mathML -p tinyify -o mathml-tag-names.min.js",
  50. "build": "npm run build-bundle && npm run build-mangle",
  51. "test-api": "node test",
  52. "test": "npm run generate && npm run format && npm run build && npm run test-api"
  53. },
  54. "prettier": {
  55. "tabWidth": 2,
  56. "useTabs": false,
  57. "singleQuote": true,
  58. "bracketSpacing": false,
  59. "semi": false,
  60. "trailingComma": "none"
  61. },
  62. "xo": {
  63. "prettier": true,
  64. "esnext": false,
  65. "ignore": [
  66. "mathml-tag-names.js"
  67. ]
  68. },
  69. "remarkConfig": {
  70. "plugins": [
  71. "preset-wooorm"
  72. ]
  73. }
  74. }