package.json 1.1 KB

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