UNPKG

pnpm

Version:

Fast, disk space efficient package manager

111 lines (110 loc) 4.82 kB
{ "_args": [ [ { "raw": "is-ci@2.0.0", "scope": null, "escapedName": "is-ci", "name": "is-ci", "rawSpec": "2.0.0", "spec": "2.0.0", "type": "version" }, "/home/zoltan/src/pnpm/pnpm/packages/pnpm" ] ], "_from": "is-ci@2.0.0", "_hasShrinkwrap": false, "_id": "is-ci@2.0.0", "_location": "/is-ci", "_nodeVersion": "11.3.0", "_npmOperationalInternal": { "host": "s3://npm-registry-packages", "tmp": "tmp/is-ci_2.0.0_1544046590680_0.06142265580938111" }, "_npmUser": { "name": "watson", "email": "w@tson.dk" }, "_npmVersion": "6.4.1", "_phantomChildren": {}, "_requested": { "raw": "is-ci@2.0.0", "scope": null, "escapedName": "is-ci", "name": "is-ci", "rawSpec": "2.0.0", "spec": "2.0.0", "type": "version" }, "_requiredBy": [ "/", "/supi" ], "_resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", "_shasum": "6bc6334181810e04b5c22b3d589fdca55026404c", "_shrinkwrap": null, "_spec": "is-ci@2.0.0", "_where": "/home/zoltan/src/pnpm/pnpm/packages/pnpm", "author": { "name": "Thomas Watson Steen", "email": "w@tson.dk", "url": "https://twitter.com/wa7son" }, "bin": { "is-ci": "bin.js" }, "bugs": { "url": "https://github.com/watson/is-ci/issues" }, "coordinates": [ 55.778272, 12.593116 ], "dependencies": { "ci-info": "^2.0.0" }, "description": "Detect if the current environment is a CI server", "devDependencies": { "clear-module": "^3.0.0", "standard": "^12.0.1" }, "directories": {}, "dist": { "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", "shasum": "6bc6334181810e04b5c22b3d589fdca55026404c", "tarball": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", "fileCount": 6, "unpackedSize": 3581, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCEf/CRA9TVsSAnZWagAAMvwP/1cV6uY9uye3xn2vM6vC\nMAhvaWd12GWmBg9POPhJaGi9KwhnaogbAVPHV5hhRiecrhiVXmn/Zu0T/rHt\nIkwPTeZsZ8OH4PkucIEEquj76bSJAV3oGoEWD1j3xZmCw3euSM3qsbiioYDS\nMiOBUVXhfLFZpQ3VqbN7I7L6LeuD1TDWER4rKPAl7qQO5rDgNNhk2T8KR1r/\nwiRI6YYtD1mhPF6RhUAFjUS0mT14NJ+PT+2U0c2FO8ubKb01cUk+xWCAhxax\nj6ebQnpRYDeZqICPpNOdJyenOAmsAZbFbo6vWE8M2AO/j/8+X7+P/kocdKWz\n4xrXdkM3g2Iuy+muIR9WkroWH++r3553Ni7GR1vI0qL49hlm/93zh5Vsc93a\n+VbreKYr6FzcBH+j47LG+P9TO+DZ5medQxr9U8t0WcnK0+nPW62SUoEfzryt\n6dnxeHsSRCTCQDfbgKU7s4rvG7hFmMlHH29MYVFAIwWvSJjXIlUqDsD75DwM\nKoWqNZixUYC3024ioZNxhK8bjr7Vsf6aFmplTt0aILMDuGtKwBzA9ZcijhTQ\nhPdEs24sEly9jeLastC6kvJPKxYeqZkPHvtLjWuKZ3QZMlCQN24QFWSLh2rv\nrLMR55eow/XuPO6hEqlRhSN0W4TTppsoBiravL42eK41ylzd+l80ICLTh+CZ\npcQS\r\n=YX5I\r\n-----END PGP SIGNATURE-----\r\n" }, "gitHead": "8b88365d804abc1905ca93f312e99cf95b48fc8a", "homepage": "https://github.com/watson/is-ci", "keywords": [ "ci", "continuous", "integration", "test", "detect" ], "license": "MIT", "main": "index.js", "maintainers": [ { "name": "watson", "email": "w@tson.dk" } ], "name": "is-ci", "optionalDependencies": {}, "readme": "# is-ci\n\nReturns `true` if the current environment is a Continuous Integration\nserver.\n\nPlease [open an issue](https://github.com/watson/is-ci/issues) if your\nCI server isn't properly detected :)\n\n[![npm](https://img.shields.io/npm/v/is-ci.svg)](https://www.npmjs.com/package/is-ci)\n[![Build status](https://travis-ci.org/watson/is-ci.svg?branch=master)](https://travis-ci.org/watson/is-ci)\n[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://github.com/feross/standard)\n\n## Installation\n\n```bash\nnpm install is-ci --save\n```\n\n## Programmatic Usage\n\n```js\nconst isCI = require('is-ci')\n\nif (isCI) {\n console.log('The code is running on a CI server')\n}\n```\n\n## CLI Usage\n\nFor CLI usage you need to have the `is-ci` executable in your `PATH`.\nThere's a few ways to do that:\n\n- Either install the module globally using `npm install is-ci -g`\n- Or add the module as a dependency to your app in which case it can be\n used inside your package.json scripts as is\n- Or provide the full path to the executable, e.g.\n `./node_modules/.bin/is-ci`\n\n```bash\nis-ci && echo \"This is a CI server\"\n```\n\n## Supported CI tools\n\nRefer to [ci-info](https://github.com/watson/ci-info#supported-ci-tools) docs for all supported CI's\n\n## License\n\n[MIT](LICENSE)\n", "readmeFilename": "README.md", "repository": { "type": "git", "url": "git+https://github.com/watson/is-ci.git" }, "scripts": { "test": "standard && node test.js" }, "version": "2.0.0" }