package.json 914 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "ci-info",
  3. "version": "3.7.0",
  4. "description": "Get details about the current Continuous Integration environment",
  5. "main": "index.js",
  6. "typings": "index.d.ts",
  7. "author": "Thomas Watson Steen <w@tson.dk> (https://twitter.com/wa7son)",
  8. "license": "MIT",
  9. "repository": "https://github.com/watson/ci-info.git",
  10. "bugs": "https://github.com/watson/ci-info/issues",
  11. "homepage": "https://github.com/watson/ci-info",
  12. "keywords": [
  13. "ci",
  14. "continuous",
  15. "integration",
  16. "test",
  17. "detect"
  18. ],
  19. "files": [
  20. "vendors.json",
  21. "index.js",
  22. "index.d.ts",
  23. "CHANGELOG.md"
  24. ],
  25. "scripts": {
  26. "lint:fix": "standard --fix",
  27. "test": "standard && node test.js",
  28. "prepare": "husky install"
  29. },
  30. "devDependencies": {
  31. "clear-module": "^4.1.2",
  32. "husky": "^8.0.2",
  33. "standard": "^17.0.0",
  34. "tape": "^5.6.1"
  35. },
  36. "engines": {
  37. "node": ">=8"
  38. }
  39. }