package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "html-loader",
  3. "version": "0.4.5",
  4. "author": "Tobias Koppers @sokra",
  5. "description": "html loader module for webpack",
  6. "dependencies": {
  7. "es6-templates": "^0.2.2",
  8. "fastparse": "^1.1.1",
  9. "html-minifier": "^3.0.1",
  10. "loader-utils": "^1.0.2",
  11. "object-assign": "^4.1.0"
  12. },
  13. "license": "MIT",
  14. "devDependencies": {
  15. "beautify-lint": "^1.0.4",
  16. "codecov.io": "^0.1.6",
  17. "eslint": "^3.1.1",
  18. "istanbul": "^0.4.4",
  19. "js-beautify": "^1.6.3",
  20. "mocha": "^2.5.3",
  21. "should": "^10.0.0"
  22. },
  23. "scripts": {
  24. "pretest": "npm run lint && npm run beautify-lint",
  25. "test": "mocha --harmony --full-trace --check-leaks",
  26. "travis": "npm run cover -- --report lcovonly",
  27. "lint": "eslint lib bin hot",
  28. "beautify-lint": "beautify-lint lib/**/*.js hot/**/*.js bin/**/*.js benchmark/*.js test/*.js",
  29. "beautify": "beautify-rewrite lib/**/*.js hot/**/*.js bin/**/*.js benchmark/*.js test/*.js",
  30. "postcover": "npm run lint && npm run beautify-lint",
  31. "cover": "istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha",
  32. "publish-patch": "npm run lint && npm run beautify-lint && mocha && npm version patch && git push && git push --tags && npm publish"
  33. },
  34. "repository": {
  35. "type": "git",
  36. "url": "git@github.com:webpack/html-loader.git"
  37. }
  38. }