package.json 998 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "lilconfig",
  3. "version": "3.1.3",
  4. "description": "A zero-dependency alternative to cosmiconfig",
  5. "main": "src/index.js",
  6. "types": "src/index.d.ts",
  7. "scripts": {
  8. "test": "NODE_OPTIONS=--experimental-vm-modules ./node_modules/.bin/jest --coverage",
  9. "lint": "biome ci ./src",
  10. "types": "tsc"
  11. },
  12. "keywords": [
  13. "cosmiconfig",
  14. "config",
  15. "configuration",
  16. "search"
  17. ],
  18. "files": [
  19. "src/index.*"
  20. ],
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/antonk52/lilconfig"
  24. },
  25. "bugs": "https://github.com/antonk52/lilconfig/issues",
  26. "author": "antonk52",
  27. "license": "MIT",
  28. "devDependencies": {
  29. "@biomejs/biome": "^1.6.0",
  30. "@types/jest": "^29.5.12",
  31. "@types/node": "^14.18.63",
  32. "@types/webpack-env": "^1.18.5",
  33. "cosmiconfig": "^8.3.6",
  34. "jest": "^29.7.0",
  35. "typescript": "^5.3.3",
  36. "uvu": "^0.5.6"
  37. },
  38. "funding": "https://github.com/sponsors/antonk52",
  39. "engines": {
  40. "node": ">=14"
  41. }
  42. }