CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
package.json52 linesDownload Raw Back to is-inside-container
1{2	"name": "is-inside-container",3	"version": "1.0.0",4	"description": "Check if the process is running inside a container (Docker/Podman)",5	"license": "MIT",6	"repository": "sindresorhus/is-inside-container",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	"exports": {15		"types": "./index.d.ts",16		"default": "./index.js"17	},18	"bin": "./cli.js",19	"engines": {20		"node": ">=14.16"21	},22	"scripts": {23		"test": "xo && NODE_OPTIONS='--loader=esmock --no-warnings' ava && tsd"24	},25	"files": [26		"index.js",27		"index.d.ts",28		"cli.js"29	],30	"keywords": [31		"detect",32		"inside",33		"container",34		"docker",35		"dockerized",36		"podman",37		"is",38		"env",39		"environment",40		"process"41	],42	"dependencies": {43		"is-docker": "^3.0.0"44	},45	"devDependencies": {46		"ava": "^5.2.0",47		"esmock": "^2.1.0",48		"tsd": "^0.25.0",49		"xo": "^0.53.1"50	}51}52 
basant307/AI_Governance_Project · CoolFace