package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "ci-info",
  3. "version": "4.3.0",
  4. "description": "Get details about the current Continuous Integration environment",
  5. "main": "index.js",
  6. "typings": "index.d.ts",
  7. "type": "commonjs",
  8. "author": "Thomas Watson Steen <w@tson.dk> (https://twitter.com/wa7son)",
  9. "license": "MIT",
  10. "repository": "github:watson/ci-info",
  11. "bugs": "https://github.com/watson/ci-info/issues",
  12. "homepage": "https://github.com/watson/ci-info",
  13. "contributors": [
  14. {
  15. "name": "Sibiraj",
  16. "url": "https://github.com/sibiraj-s"
  17. }
  18. ],
  19. "funding": [
  20. {
  21. "type": "github",
  22. "url": "https://github.com/sponsors/sibiraj-s"
  23. }
  24. ],
  25. "keywords": [
  26. "ci",
  27. "continuous",
  28. "integration",
  29. "test",
  30. "detect"
  31. ],
  32. "files": [
  33. "vendors.json",
  34. "index.js",
  35. "index.d.ts",
  36. "CHANGELOG.md"
  37. ],
  38. "scripts": {
  39. "build": "node sort-vendors.js && node create-typings.js",
  40. "lint:fix": "standard --fix",
  41. "test": "standard && node test.js",
  42. "prepare": "husky install || true"
  43. },
  44. "devDependencies": {
  45. "clear-module": "^4.1.2",
  46. "husky": "^9.1.7",
  47. "publint": "^0.3.12",
  48. "standard": "^17.1.2",
  49. "tape": "^5.9.0"
  50. },
  51. "engines": {
  52. "node": ">=8"
  53. }
  54. }