package.json 868 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "loader-utils",
  3. "version": "1.4.2",
  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": "^1.0.1"
  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": ">=4.0.0"
  25. },
  26. "devDependencies": {
  27. "coveralls": "^3.0.2",
  28. "eslint": "^5.11.0",
  29. "eslint-plugin-node": "^8.0.0",
  30. "eslint-plugin-prettier": "^3.0.0",
  31. "jest": "^21.2.1",
  32. "prettier": "^1.19.1",
  33. "standard-version": "^4.0.0"
  34. },
  35. "main": "lib/index.js",
  36. "files": [
  37. "lib"
  38. ]
  39. }