package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "posthtml-parser",
  3. "version": "0.2.1",
  4. "description": "Parse HTML/XML to PostHTMLTree",
  5. "keywords": [
  6. "html",
  7. "xml",
  8. "parser",
  9. "posthtml",
  10. "posthtmltree"
  11. ],
  12. "main": "index.js",
  13. "scripts": {
  14. "test": "npm run lint && npm run coverage",
  15. "lint": "jshint . && jscs -v .",
  16. "coverage": "istanbul cover --report text --report html --report lcov node_modules/mocha/bin/_mocha",
  17. "preversion": "npm test",
  18. "postversion": "git push && git push --tags && rm -rf coverage"
  19. },
  20. "repository": "posthtml/posthtml-parser",
  21. "author": "Ivan Voischev <voischev.ivan@ya.ru>",
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/posthtml/posthtml-parser/issues"
  25. },
  26. "homepage": "https://github.com/posthtml/posthtml-parser#readme",
  27. "dependencies": {
  28. "htmlparser2": "^3.8.3",
  29. "isobject": "^2.1.0"
  30. },
  31. "devDependencies": {
  32. "chai": "^3.3.0",
  33. "istanbul": "^0.4.0",
  34. "jscs": "^2.3.5",
  35. "jshint": "^2.8.0",
  36. "mocha": "^2.3.3",
  37. "rewire": "^2.5.2",
  38. "sinon": "^1.17.4",
  39. "sinon-chai": "^2.8.0"
  40. }
  41. }