basant307/AI_Governance_Project
048
1{2 "name": "is-in-ci",3 "version": "1.0.0",4 "description": "Check if the process is running in a Continuous Integration (CI) environment",5 "license": "MIT",6 "repository": "sindresorhus/is-in-ci",7 "funding": "https://github.com/sponsors/sindresorhus",8 "author": {9 "name": "Sindre Sorhus",10 "email": "sindresorhus@gmail.com",11 "url": "https://sindresorhus.com"12 },13 "type": "module",14 "bin": "./cli.js",15 "exports": {16 "types": "./index.d.ts",17 "default": "./index.js"18 },19 "sideEffects": false,20 "engines": {21 "node": ">=18"22 },23 "scripts": {24 "test": "xo && CI=1 ava && tsc index.d.ts"25 },26 "files": [27 "index.js",28 "index.d.ts",29 "cli.js"30 ],31 "keywords": [32 "ci",33 "continuous",34 "integration",35 "environment",36 "server",37 "check",38 "detect",39 "determine",40 "test",41 "cli",42 "cli-app"43 ],44 "devDependencies": {45 "ava": "^5.3.1",46 "typescript": "^5.2.2",47 "xo": "^0.56.0"48 }49}50 