package.json 821 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "ci-info",
  3. "version": "3.5.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. },
  29. "devDependencies": {
  30. "clear-module": "^4.1.2",
  31. "standard": "^17.0.0",
  32. "tape": "^5.6.0"
  33. }
  34. }