Files
codeql-action/node_modules/ava/package.json
T

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

162 lines
3.5 KiB
JSON
Raw Normal View History

2020-05-04 18:50:13 +01:00
{
"name": "ava",
2023-07-13 09:09:17 +00:00
"version": "5.3.1",
2021-10-21 15:24:20 -07:00
"description": "Node.js test runner that lets you develop with confidence.",
2020-05-04 18:50:13 +01:00
"license": "MIT",
"repository": "avajs/ava",
"homepage": "https://avajs.dev",
2022-02-01 18:01:11 +00:00
"bin": {
"ava": "entrypoints/cli.mjs"
},
"exports": {
".": {
2022-09-02 18:02:07 +01:00
"import": {
2023-01-18 20:50:03 +00:00
"types": "./entrypoints/main.d.ts",
2022-09-02 18:02:07 +01:00
"default": "./entrypoints/main.mjs"
},
"require": {
2023-01-18 20:50:03 +00:00
"types": "./entrypoints/main.d.cts",
2022-09-02 18:02:07 +01:00
"default": "./entrypoints/main.cjs"
}
2022-02-01 18:01:11 +00:00
},
"./eslint-plugin-helper": "./entrypoints/eslint-plugin-helper.cjs",
"./plugin": {
2022-09-02 18:02:07 +01:00
"import": {
2023-01-18 20:50:03 +00:00
"types": "./entrypoints/plugin.d.ts",
2022-09-02 18:02:07 +01:00
"default": "./entrypoints/plugin.mjs"
},
"require": {
"types": "./entrypoints/plugin.d.cts",
"default": "./entrypoints/plugin.cjs"
}
2022-02-01 18:01:11 +00:00
}
},
"type": "module",
2020-05-04 18:50:13 +01:00
"engines": {
2023-01-18 20:50:03 +00:00
"node": ">=14.19 <15 || >=16.15 <17 || >=18"
2020-05-04 18:50:13 +01:00
},
"scripts": {
2022-02-01 18:01:11 +00:00
"cover": "c8 --report=none test-ava && c8 --report=none --no-clean tap && c8 report",
2023-01-18 20:50:03 +00:00
"test": "xo && tsc --noEmit && npm run -s cover"
2020-05-04 18:50:13 +01:00
},
"files": [
2022-02-01 18:01:11 +00:00
"entrypoints",
2020-05-04 18:50:13 +01:00
"lib",
2022-02-01 18:01:11 +00:00
"types",
2023-01-18 20:50:03 +00:00
"*.d.ts"
2020-05-04 18:50:13 +01:00
],
"keywords": [
"🦄",
"test",
"runner",
"testing",
"ava",
"concurrent",
"parallel",
"fast",
"tdd",
"cli-app",
"cli",
"jest",
"mocha",
"tape",
"tap",
"qunit",
"jasmine",
"assert",
"assertion",
"promise",
"promises",
"async",
"function",
"await",
"generator",
"generators",
"yield",
"observable",
"observables",
"unit",
"snapshot",
"expect",
"typescript"
],
"dependencies": {
2023-07-13 09:09:17 +00:00
"acorn": "^8.8.2",
2022-02-01 18:01:11 +00:00
"acorn-walk": "^8.2.0",
2023-01-18 20:50:03 +00:00
"ansi-styles": "^6.2.1",
2020-05-04 18:50:13 +01:00
"arrgv": "^1.0.2",
2022-02-01 18:01:11 +00:00
"arrify": "^3.0.0",
"callsites": "^4.0.0",
"cbor": "^8.1.0",
2023-01-18 20:50:03 +00:00
"chalk": "^5.2.0",
2022-09-02 18:02:07 +01:00
"chokidar": "^3.5.3",
2020-05-04 18:50:13 +01:00
"chunkd": "^2.0.1",
2023-07-13 09:09:17 +00:00
"ci-info": "^3.8.0",
2021-10-21 15:24:20 -07:00
"ci-parallel-vars": "^1.0.1",
2020-05-04 18:50:13 +01:00
"clean-yaml-object": "^0.1.0",
2022-02-01 18:01:11 +00:00
"cli-truncate": "^3.1.0",
2022-09-02 18:02:07 +01:00
"code-excerpt": "^4.0.0",
2020-05-04 18:50:13 +01:00
"common-path-prefix": "^3.0.0",
2022-02-01 18:01:11 +00:00
"concordance": "^5.0.4",
2020-05-04 18:50:13 +01:00
"currently-unhandled": "^0.4.1",
2022-09-02 18:02:07 +01:00
"debug": "^4.3.4",
2023-01-18 20:50:03 +00:00
"emittery": "^1.0.1",
"figures": "^5.0.0",
2023-07-13 09:09:17 +00:00
"globby": "^13.1.4",
2022-09-02 18:02:07 +01:00
"ignore-by-default": "^2.1.0",
2022-02-01 18:01:11 +00:00
"indent-string": "^5.0.0",
2020-05-04 18:50:13 +01:00
"is-error": "^2.2.2",
2021-10-21 15:24:20 -07:00
"is-plain-object": "^5.0.0",
"is-promise": "^4.0.0",
2022-02-01 18:01:11 +00:00
"matcher": "^5.0.0",
2022-09-02 18:02:07 +01:00
"mem": "^9.0.2",
2021-10-21 15:24:20 -07:00
"ms": "^2.1.3",
2022-02-01 18:01:11 +00:00
"p-event": "^5.0.1",
2023-01-18 20:50:03 +00:00
"p-map": "^5.5.0",
2022-09-02 18:02:07 +01:00
"picomatch": "^2.3.1",
2022-02-01 18:01:11 +00:00
"pkg-conf": "^4.0.0",
"plur": "^5.1.0",
2023-01-18 20:50:03 +00:00
"pretty-ms": "^8.0.0",
2020-05-04 18:50:13 +01:00
"resolve-cwd": "^3.0.0",
2023-01-18 20:50:03 +00:00
"stack-utils": "^2.0.6",
2022-02-01 18:01:11 +00:00
"strip-ansi": "^7.0.1",
2022-09-02 18:02:07 +01:00
"supertap": "^3.0.1",
2023-01-18 20:50:03 +00:00
"temp-dir": "^3.0.0",
2023-07-13 09:09:17 +00:00
"write-file-atomic": "^5.0.1",
"yargs": "^17.7.2"
2020-05-04 18:50:13 +01:00
},
"devDependencies": {
2021-10-21 15:24:20 -07:00
"@ava/test": "github:avajs/test",
2023-07-13 09:09:17 +00:00
"@ava/typescript": "^4.0.0",
2023-01-18 20:50:03 +00:00
"@sindresorhus/tsconfig": "^3.0.1",
2023-07-13 09:09:17 +00:00
"ansi-escapes": "^6.2.0",
"c8": "^7.13.0",
2022-02-01 18:01:11 +00:00
"delay": "^5.0.0",
2023-07-13 09:09:17 +00:00
"execa": "^7.1.1",
"expect": "^29.5.0",
"fs-extra": "^11.1.1",
2022-02-01 18:01:11 +00:00
"get-stream": "^6.0.1",
"replace-string": "^4.0.0",
2023-07-13 09:09:17 +00:00
"sinon": "^15.1.0",
"tap": "^16.3.4",
2022-02-01 18:01:11 +00:00
"temp-write": "^5.0.0",
2023-01-18 20:50:03 +00:00
"tempy": "^3.0.0",
2020-05-04 18:50:13 +01:00
"touch": "^3.1.0",
2023-07-13 09:09:17 +00:00
"tsd": "^0.28.1",
"typescript": "^4.9.5",
"xo": "^0.54.2",
2023-01-18 20:50:03 +00:00
"zen-observable": "^0.10.0"
2022-02-01 18:01:11 +00:00
},
"peerDependencies": {
"@ava/typescript": "*"
},
"peerDependenciesMeta": {
"@ava/typescript": {
"optional": true
}
2022-09-02 18:02:07 +01:00
},
"volta": {
2023-07-13 09:09:17 +00:00
"node": "20.2.0"
2020-05-04 18:50:13 +01:00
}
2022-02-24 17:03:29 +00:00
}