package.json 811 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "loader-utils",
  3. "version": "3.3.1",
  4. "author": "Tobias Koppers @sokra",
  5. "description": "utils for webpack loaders",
  6. "dependencies": {},
  7. "scripts": {
  8. "lint": "prettier --list-different . && eslint .",
  9. "pretest": "yarn lint",
  10. "test": "jest",
  11. "test:only": "jest --coverage",
  12. "test:ci": "yarn test:only",
  13. "release": "yarn test && standard-version"
  14. },
  15. "license": "MIT",
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/webpack/loader-utils.git"
  19. },
  20. "engines": {
  21. "node": ">= 12.13.0"
  22. },
  23. "devDependencies": {
  24. "coveralls": "^3.1.1",
  25. "eslint": "^8.0.1",
  26. "eslint-plugin-node": "^11.1.0",
  27. "jest": "^27.3.1",
  28. "prettier": "^2.4.1",
  29. "standard-version": "^9.3.2"
  30. },
  31. "main": "lib/index.js",
  32. "files": [
  33. "lib"
  34. ]
  35. }