CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json45 linesDownload Raw Back to redent
1{2	"name": "redent",3	"version": "3.0.0",4	"description": "Strip redundant indentation and indent the string",5	"license": "MIT",6	"repository": "sindresorhus/redent",7	"author": {8		"name": "Sindre Sorhus",9		"email": "sindresorhus@gmail.com",10		"url": "sindresorhus.com"11	},12	"engines": {13		"node": ">=8"14	},15	"scripts": {16		"test": "xo && ava && tsd"17	},18	"files": [19		"index.js",20		"index.d.ts"21	],22	"keywords": [23		"string",24		"strip",25		"trim",26		"indent",27		"indentation",28		"add",29		"reindent",30		"normalize",31		"remove",32		"whitespace",33		"space"34	],35	"dependencies": {36		"indent-string": "^4.0.0",37		"strip-indent": "^3.0.0"38	},39	"devDependencies": {40		"ava": "^1.4.1",41		"tsd": "^0.7.2",42		"xo": "^0.24.0"43	}44}45 
basant307/AI_Governance_Project · CoolFace