Files
codeql-action/node_modules/indent-string/package.json
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
750 B
JSON
Raw Normal View History

{
2020-05-04 18:50:13 +01:00
"name": "indent-string",
2023-07-13 09:09:17 +00:00
"version": "5.0.0",
2020-05-04 18:50:13 +01:00
"description": "Indent each line in a string",
2020-05-12 12:11:25 +01:00
"license": "MIT",
2020-05-04 18:50:13 +01:00
"repository": "sindresorhus/indent-string",
2023-07-13 09:09:17 +00:00
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
2023-07-13 09:09:17 +00:00
"url": "https://sindresorhus.com"
},
2023-07-13 09:09:17 +00:00
"type": "module",
"exports": "./index.js",
"engines": {
2023-07-13 09:09:17 +00:00
"node": ">=12"
},
2020-05-12 12:11:25 +01:00
"scripts": {
"test": "xo && ava && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
2020-05-04 18:50:13 +01:00
"indent",
"string",
"pad",
"align",
"line",
"text",
"each",
"every"
],
2020-05-12 12:11:25 +01:00
"devDependencies": {
2023-07-13 09:09:17 +00:00
"ava": "^3.15.0",
"tsd": "^0.14.0",
"xo": "^0.38.2"
2020-05-12 12:11:25 +01:00
}
2022-02-24 17:03:29 +00:00
}