package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "watchpack",
  3. "version": "2.4.2",
  4. "description": "",
  5. "main": "./lib/watchpack.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "files": [
  10. "lib/"
  11. ],
  12. "scripts": {
  13. "pretty-files": "prettier \"lib/**.*\" \"test/**/*.js\" --write",
  14. "lint": "eslint lib",
  15. "test:only": "mocha",
  16. "test:coverage": "istanbul cover node_modules/mocha/bin/_mocha",
  17. "pretest": "yarn lint",
  18. "test": "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. "coveralls": "^3.0.0",
  32. "eslint": "^5.11.1",
  33. "eslint-config-prettier": "^4.3.0",
  34. "eslint-plugin-prettier": "^3.1.0",
  35. "istanbul": "^0.4.3",
  36. "mocha": "^5.0.1",
  37. "prettier": "^1.11.0",
  38. "rimraf": "^2.6.2",
  39. "should": "^8.3.1",
  40. "write-file-atomic": "^3.0.1"
  41. },
  42. "dependencies": {
  43. "glob-to-regexp": "^0.4.1",
  44. "graceful-fs": "^4.1.2"
  45. },
  46. "engines": {
  47. "node": ">=10.13.0"
  48. }
  49. }