package.json 590 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "@npmcli/ci-detect",
  3. "version": "1.4.0",
  4. "description": "Detect what kind of CI environment the program is in",
  5. "author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)",
  6. "license": "ISC",
  7. "scripts": {
  8. "test": "tap",
  9. "preversion": "npm test",
  10. "postversion": "npm publish",
  11. "prepublishOnly": "git push origin --follow-tags"
  12. },
  13. "tap": {
  14. "check-coverage": true
  15. },
  16. "devDependencies": {
  17. "tap": "^14.10.2"
  18. },
  19. "files": [
  20. "index.js"
  21. ],
  22. "repository": {
  23. "type": "git",
  24. "url": "git+https://github.com/npm/ci-detect.git"
  25. }
  26. }