You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.3 KiB

2 years ago
  1. {
  2. "name": "lilconfig",
  3. "version": "2.0.6",
  4. "description": "A zero-dependency alternative to cosmiconfig",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "scripts": {
  8. "prebuild": "npm run clean",
  9. "build": "tsc --declaration",
  10. "postbuild": "du -h ./dist/*",
  11. "clean": "rm -rf ./dist",
  12. "test": "jest --coverage",
  13. "lint": "eslint ./src/*.ts"
  14. },
  15. "keywords": [
  16. "cosmiconfig",
  17. "config",
  18. "configuration",
  19. "search"
  20. ],
  21. "files": [
  22. "dist/*"
  23. ],
  24. "repository": {
  25. "type": "git",
  26. "url": "https://github.com/antonk52/lilconfig"
  27. },
  28. "bugs": "https://github.com/antonk52/lilconfig/issues",
  29. "author": "antonk52",
  30. "license": "MIT",
  31. "devDependencies": {
  32. "@types/jest": "^27.0.2",
  33. "@types/node": "^14.17.2",
  34. "@typescript-eslint/eslint-plugin": "^5.3.0",
  35. "@typescript-eslint/parser": "^5.3.0",
  36. "cosmiconfig": "^7.0.1",
  37. "eslint": "^8.1.0",
  38. "eslint-config-prettier": "^8.3.0",
  39. "eslint-plugin-prettier": "^4.0.0",
  40. "jest": "^27.3.1",
  41. "prettier": "^2.4.1",
  42. "ts-jest": "^27.0.7",
  43. "typescript": "^4.4.4"
  44. },
  45. "engines": {
  46. "node": ">=10"
  47. }
  48. }