版博士V2.0程序
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.
 
 
 
 

63 lines
1.5 KiB

  1. {
  2. "name": "hyntax-yx",
  3. "version": "1.0.9",
  4. "description": "Straightforward HTML parser for Node.js and browser",
  5. "keywords": [
  6. "html",
  7. "parser",
  8. "html5",
  9. "html5 parser",
  10. "htmlparser",
  11. "html parser",
  12. "html tree-constructor",
  13. "html to JSON",
  14. "html to AST",
  15. "html tokenizer",
  16. "tokenize",
  17. "tokenizer",
  18. "stream parsing",
  19. "stream parser",
  20. "typescript",
  21. "types",
  22. "node.js",
  23. "node.js html parser"
  24. ],
  25. "repository": {
  26. "type": "git",
  27. "url": "git@github.com:nik-garmash/hyntax.git"
  28. },
  29. "homepage": "https://github.com/nik-garmash/hyntax",
  30. "bugs": "https://github.com/nik-garmash/hyntax/issues",
  31. "main": "./index.js",
  32. "scripts": {
  33. "test": "tape ${TEST:-'./tests/**/*.test.js'} | tap-spec",
  34. "coverage": "nyc -x 'tests/**/*' npm test",
  35. "generate-readme-toc": "./generate-toc.js",
  36. "prepublishOnly": "babel index.js --out-file index.es5.js && babel lib --out-dir lib-es5"
  37. },
  38. "author": {
  39. "name": "Nikolay Garmash",
  40. "email": "garmash.nikolay@gmail.com",
  41. "url": "https://nikgarmash.com"
  42. },
  43. "license": "MIT",
  44. "private": false,
  45. "engines": {
  46. "node": ">=6.11.1",
  47. "npm": ">=5.3.0"
  48. },
  49. "devDependencies": {
  50. "@babel/cli": "^7.5.5",
  51. "@babel/core": "^7.5.5",
  52. "@babel/preset-env": "^7.5.5",
  53. "coveralls": "^3.0.5",
  54. "deep-diff": "^0.3.8",
  55. "eslint": "^6.3.0",
  56. "nyc": "^14.1.1",
  57. "remark": "^10.0.1",
  58. "remark-toc": "^5.1.1",
  59. "tap-spec": "^5.0.0",
  60. "tape": "^4.11.0"
  61. }
  62. }