package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "webpack-sources",
  3. "version": "3.4.1",
  4. "description": "Source code handling classes for webpack",
  5. "keywords": [
  6. "webpack",
  7. "source-map"
  8. ],
  9. "homepage": "https://github.com/webpack/webpack-sources#readme",
  10. "bugs": {
  11. "url": "https://github.com/webpack/webpack-sources/issues"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/webpack/webpack-sources.git"
  16. },
  17. "license": "MIT",
  18. "author": "Tobias Koppers @sokra",
  19. "main": "lib/index.js",
  20. "types": "types.d.ts",
  21. "files": [
  22. "lib/",
  23. "types.d.ts"
  24. ],
  25. "scripts": {
  26. "lint": "npm run lint:code && npm run lint:types && npm run lint:types-test && npm run lint:special",
  27. "lint:code": "eslint --cache .",
  28. "lint:special": "node node_modules/tooling/inherit-types && node node_modules/tooling/format-file-header && node node_modules/tooling/generate-types",
  29. "lint:types": "tsc",
  30. "lint:types-test": "tsc -p tsconfig.types.test.json",
  31. "fmt": "npm run fmt:base -- --loglevel warn --write",
  32. "fmt:check": "npm run fmt:base -- --check",
  33. "fmt:base": "prettier --cache --ignore-unknown .",
  34. "fix": "npm run fix:code && npm run fix:special",
  35. "fix:code": "npm run lint:code -- --fix",
  36. "fix:special": "node node_modules/tooling/inherit-types --write && node node_modules/tooling/format-file-header --write && node node_modules/tooling/generate-types --write",
  37. "pretest": "npm run lint",
  38. "test": "jest",
  39. "test:coverage": "jest --coverage",
  40. "benchmark": "node --max-old-space-size=4096 --hash-seed=1 --random-seed=1 --no-opt --predictable --predictable-gc-schedule --interpreted-frames-native-stack --allow-natives-syntax --expose-gc --no-concurrent-sweeping ./benchmark/run.mjs",
  41. "version": "changeset version",
  42. "release": "changeset publish"
  43. },
  44. "devDependencies": {
  45. "@changesets/cli": "^2.30.0",
  46. "@changesets/get-github-info": "^0.8.0",
  47. "@codspeed/core": "^5.2.0",
  48. "@types/jest": "^30.0.0",
  49. "eslint": "^9.28.0",
  50. "eslint-config-webpack": "^4.0.8",
  51. "jest": "^30.3.0",
  52. "prettier": "^3.5.3",
  53. "prettier-2": "npm:prettier@^2",
  54. "source-map": "^0.7.3",
  55. "sourcemap-validator": "^2.1.0",
  56. "tinybench": "^6.0.0",
  57. "tooling": "webpack/tooling#v1.26.1",
  58. "typescript": "^6.0.2",
  59. "webpack": "^5.99.9"
  60. },
  61. "engines": {
  62. "node": ">=10.13.0"
  63. }
  64. }