package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "watchpack",
  3. "version": "1.7.5",
  4. "description": "",
  5. "main": "./lib/watchpack.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "files": [
  10. "lib/"
  11. ],
  12. "scripts": {
  13. "pretest": "npm run lint",
  14. "test": "mocha",
  15. "travis": "npm run cover -- --report lcovonly",
  16. "lint": "eslint lib",
  17. "precover": "npm run lint",
  18. "cover": "istanbul cover node_modules/mocha/bin/_mocha"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/webpack/watchpack.git"
  23. },
  24. "author": "Tobias Koppers @sokra",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/webpack/watchpack/issues"
  28. },
  29. "homepage": "https://github.com/webpack/watchpack",
  30. "devDependencies": {
  31. "codecov.io": "^0.1.6",
  32. "coveralls": "^3.0.0",
  33. "eslint": "^4.18.1",
  34. "istanbul": "^0.4.3",
  35. "mocha": "^5.0.1",
  36. "rimraf": "^2.6.2",
  37. "should": "^8.3.1"
  38. },
  39. "optionalDependencies": {
  40. "chokidar": "^3.4.1",
  41. "watchpack-chokidar2": "^2.0.1"
  42. },
  43. "dependencies": {
  44. "graceful-fs": "^4.1.2",
  45. "neo-async": "^2.5.0",
  46. "chokidar": "^3.4.1",
  47. "watchpack-chokidar2": "^2.0.1"
  48. }
  49. }