This commit is contained in:
2021-11-21 11:18:28 +01:00
parent 7a358eb836
commit 230b10b2a3
9339 changed files with 892519 additions and 62 deletions

46
node_modules/strip-indent/package.json generated vendored Normal file
View File

@@ -0,0 +1,46 @@
{
"name": "strip-indent",
"version": "1.0.1",
"description": "Strip leading whitespace from every line in a string",
"license": "MIT",
"repository": "sindresorhus/strip-indent",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "http://sindresorhus.com"
},
"bin": {
"strip-indent": "cli.js"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"files": [
"index.js",
"cli.js"
],
"keywords": [
"cli",
"bin",
"browser",
"strip",
"normalize",
"remove",
"indent",
"indentation",
"whitespace",
"space",
"tab",
"string",
"str"
],
"devDependencies": {
"mocha": "*"
},
"dependencies": {
"get-stdin": "^4.0.1"
}
}