package.json 971 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "domutils",
  3. "version": "1.7.0",
  4. "description": "utilities for working with htmlparser2's dom",
  5. "main": "index.js",
  6. "directories": {
  7. "test": "tests"
  8. },
  9. "scripts": {
  10. "test": "mocha test/tests/**.js && jshint index.js test/**/*.js lib/*.js"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/FB55/domutils.git"
  15. },
  16. "keywords": [
  17. "dom",
  18. "htmlparser2"
  19. ],
  20. "dependencies": {
  21. "dom-serializer": "0",
  22. "domelementtype": "1"
  23. },
  24. "devDependencies": {
  25. "htmlparser2": "~3.9.2",
  26. "domhandler": "2",
  27. "jshint": "~2.9.4",
  28. "mocha": "~3.2.0"
  29. },
  30. "author": "Felix Boehm <me@feedic.com>",
  31. "license": "BSD-2-Clause",
  32. "jshintConfig": {
  33. "proto": true,
  34. "unused": true,
  35. "eqnull": true,
  36. "undef": true,
  37. "quotmark": "double",
  38. "eqeqeq": true,
  39. "trailing": true,
  40. "node": true,
  41. "globals": {
  42. "describe": true,
  43. "it": true,
  44. "beforeEach": true
  45. }
  46. }
  47. }