Files
codeql-action/node_modules/aggregate-error/package.json
T

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

46 lines
896 B
JSON
Raw Normal View History

2020-05-04 18:50:13 +01:00
{
"name": "aggregate-error",
2023-07-13 09:09:17 +00:00
"version": "4.0.1",
2020-05-04 18:50:13 +01:00
"description": "Create an error from multiple errors",
"license": "MIT",
"repository": "sindresorhus/aggregate-error",
2023-07-13 09:09:17 +00:00
"funding": "https://github.com/sponsors/sindresorhus",
2020-05-04 18:50:13 +01:00
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
2023-07-13 09:09:17 +00:00
"url": "https://sindresorhus.com"
2020-05-04 18:50:13 +01:00
},
2023-07-13 09:09:17 +00:00
"type": "module",
"exports": "./index.js",
2020-05-04 18:50:13 +01:00
"engines": {
2023-07-13 09:09:17 +00:00
"node": ">=12"
2020-05-04 18:50:13 +01:00
},
"scripts": {
2023-07-13 09:09:17 +00:00
"//test": "xo && ava && tsd",
"test": "ava && tsd"
2020-05-04 18:50:13 +01:00
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"aggregate",
"error",
"combine",
"multiple",
"many",
"collection",
"iterable",
"iterator"
],
"dependencies": {
2023-07-13 09:09:17 +00:00
"clean-stack": "^4.0.0",
"indent-string": "^5.0.0"
2020-05-04 18:50:13 +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-04 18:50:13 +01:00
}
2022-02-24 17:03:29 +00:00
}