UNPKG

if-ci

Version:

Easily run npm scripts only when in (or not in) a CI environment.

57 lines (56 loc) 1.1 kB
{ "name": "if-ci", "version": "3.0.0", "description": "Easily run npm scripts only when in (or not in) a CI environment.", "author": { "name": "Bo Lingen", "email": "lingenbw@gmail.com", "url": "https://github.com/citycide" }, "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/citycide/if-ci.git" }, "homepage": "https://github.com/citycide/if-ci", "bugs": "https://github.com/citycide/if-ci/issues", "engines": { "node": ">=6" }, "keywords": [ "npm", "scripts", "cli", "ci", "travis", "circle", "appveyor" ], "bin": { "if-ci": "./bin/if-ci.js", "if-not-ci": "./bin/if-not-ci.js" }, "files": [ "bin", "index.js" ], "scripts": { "lint": "standard | snazzy", "test": "ava", "prepublishOnly": "npm run lint && npm test" }, "dependencies": { "execa": "^1.0.0", "is-ci": "^2.0.0" }, "devDependencies": { "ava": "^1.1.0", "snazzy": "^8.0.0", "standard": "^12.0.1" }, "ava": { "files": [ "tests/*.js" ] } }