web 3d图形渲染器
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.

41 lines
817 B

  1. {
  2. "name": "domhandler",
  3. "version": "2.4.2",
  4. "description": "handler for htmlparser2 that turns pages into a dom",
  5. "main": "index.js",
  6. "directories": {
  7. "test": "tests"
  8. },
  9. "scripts": {
  10. "test": "mocha -R list && jshint index.js test/"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/fb55/DomHandler.git"
  15. },
  16. "keywords": [
  17. "dom",
  18. "htmlparser2"
  19. ],
  20. "dependencies": {
  21. "domelementtype": "1"
  22. },
  23. "devDependencies": {
  24. "htmlparser2": "^3.9.0",
  25. "mocha": "^3.0.2",
  26. "jshint": "^2.9.1"
  27. },
  28. "author": "Felix Boehm <me@feedic.com>",
  29. "license": "BSD-2-Clause",
  30. "jshintConfig": {
  31. "quotmark": "double",
  32. "trailing": true,
  33. "unused": true,
  34. "undef": true,
  35. "node": true,
  36. "proto": true,
  37. "globals": {
  38. "it": true
  39. }
  40. }
  41. }