package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "tapable",
  3. "version": "2.2.3",
  4. "description": "Just a little module for plugins.",
  5. "homepage": "https://github.com/webpack/tapable",
  6. "repository": {
  7. "type": "git",
  8. "url": "http://github.com/webpack/tapable.git"
  9. },
  10. "funding": {
  11. "type": "opencollective",
  12. "url": "https://opencollective.com/webpack"
  13. },
  14. "license": "MIT",
  15. "author": "Tobias Koppers @sokra",
  16. "main": "lib/index.js",
  17. "browser": {
  18. "util": "./lib/util-browser.js"
  19. },
  20. "types": "./tapable.d.ts",
  21. "files": ["lib", "!lib/__tests__", "tapable.d.ts"],
  22. "scripts": {
  23. "lint": "yarn lint:code && yarn fmt:check",
  24. "lint:code": "eslint --cache .",
  25. "fmt": "yarn fmt:base --log-level warn --write",
  26. "fmt:check": "yarn fmt:base --check",
  27. "fmt:base": "node ./node_modules/prettier/bin/prettier.cjs --cache --ignore-unknown .",
  28. "fix": "yarn fix:code && yarn fmt",
  29. "fix:code": "yarn lint:code --fix",
  30. "test": "jest"
  31. },
  32. "jest": {
  33. "transform": {
  34. "__tests__[\\\\/].+\\.js$": "babel-jest"
  35. }
  36. },
  37. "devDependencies": {
  38. "@babel/core": "^7.4.4",
  39. "@babel/preset-env": "^7.4.4",
  40. "@eslint/js": "^9.28.0",
  41. "@eslint/markdown": "^7.1.0",
  42. "@stylistic/eslint-plugin": "^5.2.3",
  43. "babel-jest": "^24.8.0",
  44. "globals": "^16.2.0",
  45. "eslint": "^9.28.0",
  46. "eslint-config-webpack": "^4.6.3",
  47. "eslint-config-prettier": "^10.1.5",
  48. "eslint-plugin-import": "^2.31.0",
  49. "eslint-plugin-jest": "^29.0.1",
  50. "eslint-plugin-n": "^17.19.0",
  51. "eslint-plugin-prettier": "^5.4.1",
  52. "eslint-plugin-unicorn": "^60.0.0",
  53. "jest": "^24.8.0",
  54. "prettier": "^3.5.3",
  55. "prettier-1": "npm:prettier@^1"
  56. },
  57. "engines": {
  58. "node": ">=6"
  59. }
  60. }