CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
package.json49 linesDownload Raw Back to import-fresh
1{2	"name": "import-fresh",3	"version": "3.3.1",4	"description": "Import a module while bypassing the cache",5	"license": "MIT",6	"repository": "sindresorhus/import-fresh",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	"exports": {14		"types": "./index.d.ts",15		"default": "./index.js"16	},17	"sideEffects": false,18	"engines": {19		"node": ">=6"20	},21	"scripts": {22		"test": "xo && ava && tsd",23		"heapdump": "node heapdump.js"24	},25	"files": [26		"index.js",27		"index.d.ts"28	],29	"keywords": [30		"require",31		"cache",32		"uncache",33		"uncached",34		"module",35		"fresh",36		"bypass"37	],38	"dependencies": {39		"parent-module": "^1.0.0",40		"resolve-from": "^4.0.0"41	},42	"devDependencies": {43		"ava": "^1.0.1",44		"heapdump": "^0.3.12",45		"tsd": "^0.7.3",46		"xo": "^0.23.0"47	}48}49 
basant307/AI_Governance_Project · CoolFace