package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "webpack-sources",
  3. "version": "3.3.3",
  4. "description": "Source code handling classes for webpack",
  5. "main": "lib/index.js",
  6. "types": "types.d.ts",
  7. "scripts": {
  8. "lint": "yarn lint:code && yarn lint:types && yarn lint:types-test && yarn lint:special",
  9. "lint:code": "eslint --cache .",
  10. "lint:special": "node node_modules/tooling/lockfile-lint && node node_modules/tooling/inherit-types && node node_modules/tooling/format-file-header && node node_modules/tooling/generate-types",
  11. "lint:types": "tsc",
  12. "lint:types-test": "tsc -p tsconfig.types.test.json",
  13. "fmt": "yarn fmt:base --loglevel warn --write",
  14. "fmt:check": "yarn fmt:base --check",
  15. "fmt:base": "prettier --cache --ignore-unknown .",
  16. "fix": "yarn fix:code && yarn fix:special",
  17. "fix:code": "yarn lint:code --fix",
  18. "fix:special": "node node_modules/tooling/inherit-types --write && node node_modules/tooling/format-file-header --write && node node_modules/tooling/generate-types --write",
  19. "pretest": "yarn lint",
  20. "test": "jest",
  21. "cover": "jest --coverage"
  22. },
  23. "devDependencies": {
  24. "@eslint/js": "^9.28.0",
  25. "@eslint/markdown": "^6.5.0",
  26. "@stylistic/eslint-plugin": "^4.4.1",
  27. "@types/jest": "^27.5.2",
  28. "coveralls": "^3.0.2",
  29. "globals": "^16.2.0",
  30. "eslint": "^9.28.0",
  31. "eslint-config-webpack": "^4.0.8",
  32. "eslint-config-prettier": "^10.1.5",
  33. "eslint-plugin-import": "^2.31.0",
  34. "eslint-plugin-jest": "^28.12.0",
  35. "eslint-plugin-jsdoc": "^50.7.1",
  36. "eslint-plugin-n": "^17.19.0",
  37. "eslint-plugin-prettier": "^5.4.1",
  38. "eslint-plugin-unicorn": "^59.0.1",
  39. "istanbul": "^0.4.1",
  40. "jest": "^27.5.1",
  41. "prettier": "^3.5.3",
  42. "prettier-2": "npm:prettier@^2",
  43. "source-map": "^0.7.3",
  44. "sourcemap-validator": "^2.1.0",
  45. "tooling": "webpack/tooling#v1.23.10",
  46. "typescript": "^5.3.3",
  47. "webpack": "^5.99.9"
  48. },
  49. "files": [
  50. "lib/",
  51. "types.d.ts"
  52. ],
  53. "engines": {
  54. "node": ">=10.13.0"
  55. },
  56. "repository": {
  57. "type": "git",
  58. "url": "git+https://github.com/webpack/webpack-sources.git"
  59. },
  60. "keywords": [
  61. "webpack",
  62. "source-map"
  63. ],
  64. "author": "Tobias Koppers @sokra",
  65. "license": "MIT",
  66. "bugs": {
  67. "url": "https://github.com/webpack/webpack-sources/issues"
  68. },
  69. "homepage": "https://github.com/webpack/webpack-sources#readme"
  70. }