package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "loader-runner",
  3. "version": "2.3.1",
  4. "description": "Runs (webpack) loaders",
  5. "main": "lib/LoaderRunner.js",
  6. "scripts": {
  7. "beautify-lint": "beautify-lint lib/**.js test/*.js",
  8. "beautify": "beautify-rewrite lib/**.js test/*.js",
  9. "lint": "eslint lib test",
  10. "pretest": "npm run lint && npm run beautify-lint",
  11. "test": "mocha --reporter spec",
  12. "precover": "npm run lint && npm run beautify-lint",
  13. "cover": "istanbul cover node_modules/mocha/bin/_mocha",
  14. "travis": "npm run cover -- --report lcovonly"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/webpack/loader-runner.git"
  19. },
  20. "keywords": [
  21. "webpack",
  22. "loader"
  23. ],
  24. "author": "Tobias Koppers @sokra",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/webpack/loader-runner/issues"
  28. },
  29. "homepage": "https://github.com/webpack/loader-runner#readme",
  30. "engines": {
  31. "node": ">=4.3.0 <5.0.0 || >=5.10"
  32. },
  33. "files": [
  34. "lib/",
  35. "bin/",
  36. "hot/",
  37. "web_modules/",
  38. "schemas/"
  39. ],
  40. "devDependencies": {
  41. "beautify-lint": "^1.0.4",
  42. "codecov.io": "^0.1.6",
  43. "coveralls": "^2.11.6",
  44. "eslint": "^3.12.2",
  45. "eslint-plugin-node": "^3.0.5",
  46. "eslint-plugin-nodeca": "^1.0.3",
  47. "istanbul": "^0.4.1",
  48. "mocha": "^3.2.0",
  49. "should": "^8.0.2"
  50. }
  51. }