1234567891011121314151617181920212223242526 |
- {
- "name": "@npmcli/ci-detect",
- "version": "1.4.0",
- "description": "Detect what kind of CI environment the program is in",
- "author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)",
- "license": "ISC",
- "scripts": {
- "test": "tap",
- "preversion": "npm test",
- "postversion": "npm publish",
- "prepublishOnly": "git push origin --follow-tags"
- },
- "tap": {
- "check-coverage": true
- },
- "devDependencies": {
- "tap": "^14.10.2"
- },
- "files": [
- "index.js"
- ],
- "repository": {
- "type": "git",
- "url": "git+https://github.com/npm/ci-detect.git"
- }
- }
|