package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "author": "GitHub Inc.",
  3. "name": "ini",
  4. "description": "An ini encoder/decoder for node",
  5. "version": "5.0.0",
  6. "repository": {
  7. "type": "git",
  8. "url": "git+https://github.com/npm/ini.git"
  9. },
  10. "main": "lib/ini.js",
  11. "scripts": {
  12. "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
  13. "lint": "npm run eslint",
  14. "lintfix": "npm run eslint -- --fix",
  15. "test": "tap",
  16. "snap": "tap",
  17. "posttest": "npm run lint",
  18. "postlint": "template-oss-check",
  19. "template-oss-apply": "template-oss-apply --force"
  20. },
  21. "devDependencies": {
  22. "@npmcli/eslint-config": "^5.0.0",
  23. "@npmcli/template-oss": "4.23.3",
  24. "tap": "^16.0.1"
  25. },
  26. "license": "ISC",
  27. "files": [
  28. "bin/",
  29. "lib/"
  30. ],
  31. "engines": {
  32. "node": "^18.17.0 || >=20.5.0"
  33. },
  34. "templateOSS": {
  35. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  36. "version": "4.23.3",
  37. "publish": "true"
  38. },
  39. "tap": {
  40. "nyc-arg": [
  41. "--exclude",
  42. "tap-snapshots/**"
  43. ]
  44. }
  45. }