package.json 1023 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "loader-runner",
  3. "version": "4.2.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. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/webpack/loader-runner.git"
  16. },
  17. "keywords": [
  18. "webpack",
  19. "loader"
  20. ],
  21. "author": "Tobias Koppers @sokra",
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/webpack/loader-runner/issues"
  25. },
  26. "homepage": "https://github.com/webpack/loader-runner#readme",
  27. "engines": {
  28. "node": ">=6.11.5"
  29. },
  30. "files": [
  31. "lib/",
  32. "bin/",
  33. "hot/",
  34. "web_modules/",
  35. "schemas/"
  36. ],
  37. "devDependencies": {
  38. "eslint": "^3.12.2",
  39. "eslint-plugin-node": "^3.0.5",
  40. "eslint-plugin-nodeca": "^1.0.3",
  41. "istanbul": "^0.4.1",
  42. "mocha": "^3.2.0",
  43. "should": "^8.0.2"
  44. }
  45. }