package.json 868 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "loader-utils",
  3. "version": "2.0.4",
  4. "author": "Tobias Koppers @sokra",
  5. "description": "utils for webpack loaders",
  6. "dependencies": {
  7. "big.js": "^5.2.2",
  8. "emojis-list": "^3.0.0",
  9. "json5": "^2.1.2"
  10. },
  11. "scripts": {
  12. "lint": "eslint lib test",
  13. "pretest": "yarn lint",
  14. "test": "jest",
  15. "test:ci": "jest --coverage",
  16. "release": "yarn test && standard-version"
  17. },
  18. "license": "MIT",
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/webpack/loader-utils.git"
  22. },
  23. "engines": {
  24. "node": ">=8.9.0"
  25. },
  26. "devDependencies": {
  27. "coveralls": "^3.0.9",
  28. "eslint": "^6.8.0",
  29. "eslint-plugin-node": "^11.0.0",
  30. "eslint-plugin-prettier": "^3.1.2",
  31. "jest": "^25.1.0",
  32. "prettier": "^1.19.1",
  33. "standard-version": "^7.1.0"
  34. },
  35. "main": "lib/index.js",
  36. "files": [
  37. "lib"
  38. ]
  39. }