package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "webpack-sources",
  3. "version": "3.2.3",
  4. "description": "Source code handling classes for webpack",
  5. "main": "./lib/index.js",
  6. "scripts": {
  7. "pretest": "yarn lint",
  8. "test": "jest",
  9. "lint": "eslint --cache lib test/*.js",
  10. "cover": "jest --coverage"
  11. },
  12. "devDependencies": {
  13. "coveralls": "^3.0.2",
  14. "eslint": "^7.7.0",
  15. "eslint-config-prettier": "^6.11.0",
  16. "eslint-plugin-jest": "^23.20.0",
  17. "eslint-plugin-mocha": "^8.0.0",
  18. "eslint-plugin-node": "^11.1.0",
  19. "eslint-plugin-nodeca": "^1.0.3",
  20. "eslint-plugin-prettier": "^3.0.1",
  21. "istanbul": "^0.4.1",
  22. "jest": "^26.4.0",
  23. "prettier": "^2.0.5",
  24. "source-map": "^0.7.3",
  25. "sourcemap-validator": "^2.1.0"
  26. },
  27. "files": [
  28. "lib/",
  29. "!lib/helpers/__mocks__"
  30. ],
  31. "engines": {
  32. "node": ">=10.13.0"
  33. },
  34. "repository": {
  35. "type": "git",
  36. "url": "git+https://github.com/webpack/webpack-sources.git"
  37. },
  38. "keywords": [
  39. "webpack",
  40. "source-map"
  41. ],
  42. "author": "Tobias Koppers @sokra",
  43. "license": "MIT",
  44. "bugs": {
  45. "url": "https://github.com/webpack/webpack-sources/issues"
  46. },
  47. "homepage": "https://github.com/webpack/webpack-sources#readme",
  48. "jest": {
  49. "forceExit": true,
  50. "testMatch": [
  51. "<rootDir>/test/*.js"
  52. ],
  53. "transformIgnorePatterns": [
  54. "<rootDir>"
  55. ],
  56. "testEnvironment": "node"
  57. }
  58. }