UNPKG

ava

Version:

Testing can be a drag. AVA helps you get it done.

184 lines (183 loc) 3.75 kB
{ "name": "ava", "version": "3.5.0", "description": "Testing can be a drag. AVA helps you get it done.", "license": "MIT", "repository": "avajs/ava", "homepage": "https://avajs.dev", "bin": "cli.js", "engines": { "node": ">=10.18.0 <11 || >=12.14.0 <13 || >=13.5.0" }, "scripts": { "lint": "xo", "test:tap": "tap", "test:typescript": "tsc --noEmit -p test/ts-types", "test": "npm run lint && npm run test:typescript && npm run test:tap" }, "files": [ "lib", "*.js", "index.d.ts" ], "keywords": [ "🦄", "test", "runner", "testing", "ava", "concurrent", "parallel", "fast", "tdd", "cli-app", "cli", "jest", "mocha", "tape", "tap", "qunit", "jasmine", "babel", "assert", "assertion", "promise", "promises", "async", "function", "await", "generator", "generators", "yield", "observable", "observables", "unit", "snapshot", "expect", "typescript" ], "dependencies": { "@concordance/react": "^2.0.0", "ansi-styles": "^4.2.1", "arrgv": "^1.0.2", "arrify": "^2.0.1", "chalk": "^3.0.0", "chokidar": "^3.3.1", "chunkd": "^2.0.1", "ci-parallel-vars": "^1.0.0", "clean-stack": "^2.2.0", "clean-yaml-object": "^0.1.0", "cli-cursor": "^3.1.0", "cli-truncate": "^2.1.0", "code-excerpt": "^2.1.1", "common-path-prefix": "^3.0.0", "concordance": "^4.0.0", "convert-source-map": "^1.7.0", "currently-unhandled": "^0.4.1", "debug": "^4.1.1", "del": "^5.1.0", "emittery": "^0.5.1", "equal-length": "^1.0.0", "figures": "^3.1.0", "globby": "^11.0.0", "ignore-by-default": "^1.0.0", "import-local": "^3.0.2", "indent-string": "^4.0.0", "is-ci": "^2.0.0", "is-error": "^2.2.2", "is-plain-object": "^3.0.0", "is-promise": "^2.1.0", "lodash": "^4.17.15", "matcher": "^2.1.0", "md5-hex": "^3.0.1", "ms": "^2.1.2", "ora": "^4.0.3", "p-map": "^3.0.0", "picomatch": "^2.2.1", "pkg-conf": "^3.1.0", "plur": "^4.0.0", "pretty-ms": "^6.0.0", "read-pkg": "^5.2.0", "resolve-cwd": "^3.0.0", "slash": "^3.0.0", "source-map-support": "^0.5.16", "stack-utils": "^2.0.1", "strip-ansi": "^6.0.0", "supertap": "^1.0.0", "temp-dir": "^2.0.0", "trim-off-newlines": "^1.0.1", "update-notifier": "^4.1.0", "write-file-atomic": "^3.0.1", "yargs": "^15.1.0" }, "devDependencies": { "@ava/babel": "^1.0.1", "@sinonjs/fake-timers": "^6.0.0", "ansi-escapes": "^4.3.0", "delay": "^4.3.0", "esm": "^3.2.25", "execa": "^4.0.0", "get-stream": "^5.1.0", "p-event": "^4.1.0", "proxyquire": "^2.1.3", "react": "^16.12.0", "react-test-renderer": "^16.12.0", "replace-string": "^3.0.0", "sinon": "^8.1.1", "source-map-fixtures": "^2.1.0", "tap": "^14.10.6", "temp-write": "^4.0.0", "tempy": "^0.4.0", "touch": "^3.1.0", "ts-node": "^8.6.2", "typescript": "^3.7.5", "xo": "^0.26.1", "zen-observable": "^0.8.15" }, "xo": { "ignores": [ "media/**", "test/fixture/ava-paths/target/test.js", "test/fixture/{source-map-initial,syntax-error}.js", "test/fixture/snapshots/test-sourcemaps/build/**", "test/fixture/power-assert.js", "**/*.ts" ], "rules": { "no-use-extend-native/no-use-extend-native": "off" }, "overrides": [ { "files": "test/**/*.js", "rules": { "promise/prefer-await-to-then": "off" } }, { "files": "test/fixture/**/*.js", "rules": { "import/no-extraneous-dependencies": "off" } } ] }, "tap": { "browser": false, "coverage-report": [ "html", "lcov", "text" ], "esm": false, "files": [ "test/*.js", "test/reporters/*.js", "test/integration/*.js" ], "flow": false, "jobs": 2, "jsx": false, "timeout": 300, "ts": false } }