UNPKG

3.75 kBJSONView Raw
1{
2 "name": "ava",
3 "version": "3.5.0",
4 "description": "Testing can be a drag. AVA helps you get it done.",
5 "license": "MIT",
6 "repository": "avajs/ava",
7 "homepage": "https://avajs.dev",
8 "bin": "cli.js",
9 "engines": {
10 "node": ">=10.18.0 <11 || >=12.14.0 <13 || >=13.5.0"
11 },
12 "scripts": {
13 "lint": "xo",
14 "test:tap": "tap",
15 "test:typescript": "tsc --noEmit -p test/ts-types",
16 "test": "npm run lint && npm run test:typescript && npm run test:tap"
17 },
18 "files": [
19 "lib",
20 "*.js",
21 "index.d.ts"
22 ],
23 "keywords": [
24 "🦄",
25 "test",
26 "runner",
27 "testing",
28 "ava",
29 "concurrent",
30 "parallel",
31 "fast",
32 "tdd",
33 "cli-app",
34 "cli",
35 "jest",
36 "mocha",
37 "tape",
38 "tap",
39 "qunit",
40 "jasmine",
41 "babel",
42 "assert",
43 "assertion",
44 "promise",
45 "promises",
46 "async",
47 "function",
48 "await",
49 "generator",
50 "generators",
51 "yield",
52 "observable",
53 "observables",
54 "unit",
55 "snapshot",
56 "expect",
57 "typescript"
58 ],
59 "dependencies": {
60 "@concordance/react": "^2.0.0",
61 "ansi-styles": "^4.2.1",
62 "arrgv": "^1.0.2",
63 "arrify": "^2.0.1",
64 "chalk": "^3.0.0",
65 "chokidar": "^3.3.1",
66 "chunkd": "^2.0.1",
67 "ci-parallel-vars": "^1.0.0",
68 "clean-stack": "^2.2.0",
69 "clean-yaml-object": "^0.1.0",
70 "cli-cursor": "^3.1.0",
71 "cli-truncate": "^2.1.0",
72 "code-excerpt": "^2.1.1",
73 "common-path-prefix": "^3.0.0",
74 "concordance": "^4.0.0",
75 "convert-source-map": "^1.7.0",
76 "currently-unhandled": "^0.4.1",
77 "debug": "^4.1.1",
78 "del": "^5.1.0",
79 "emittery": "^0.5.1",
80 "equal-length": "^1.0.0",
81 "figures": "^3.1.0",
82 "globby": "^11.0.0",
83 "ignore-by-default": "^1.0.0",
84 "import-local": "^3.0.2",
85 "indent-string": "^4.0.0",
86 "is-ci": "^2.0.0",
87 "is-error": "^2.2.2",
88 "is-plain-object": "^3.0.0",
89 "is-promise": "^2.1.0",
90 "lodash": "^4.17.15",
91 "matcher": "^2.1.0",
92 "md5-hex": "^3.0.1",
93 "ms": "^2.1.2",
94 "ora": "^4.0.3",
95 "p-map": "^3.0.0",
96 "picomatch": "^2.2.1",
97 "pkg-conf": "^3.1.0",
98 "plur": "^4.0.0",
99 "pretty-ms": "^6.0.0",
100 "read-pkg": "^5.2.0",
101 "resolve-cwd": "^3.0.0",
102 "slash": "^3.0.0",
103 "source-map-support": "^0.5.16",
104 "stack-utils": "^2.0.1",
105 "strip-ansi": "^6.0.0",
106 "supertap": "^1.0.0",
107 "temp-dir": "^2.0.0",
108 "trim-off-newlines": "^1.0.1",
109 "update-notifier": "^4.1.0",
110 "write-file-atomic": "^3.0.1",
111 "yargs": "^15.1.0"
112 },
113 "devDependencies": {
114 "@ava/babel": "^1.0.1",
115 "@sinonjs/fake-timers": "^6.0.0",
116 "ansi-escapes": "^4.3.0",
117 "delay": "^4.3.0",
118 "esm": "^3.2.25",
119 "execa": "^4.0.0",
120 "get-stream": "^5.1.0",
121 "p-event": "^4.1.0",
122 "proxyquire": "^2.1.3",
123 "react": "^16.12.0",
124 "react-test-renderer": "^16.12.0",
125 "replace-string": "^3.0.0",
126 "sinon": "^8.1.1",
127 "source-map-fixtures": "^2.1.0",
128 "tap": "^14.10.6",
129 "temp-write": "^4.0.0",
130 "tempy": "^0.4.0",
131 "touch": "^3.1.0",
132 "ts-node": "^8.6.2",
133 "typescript": "^3.7.5",
134 "xo": "^0.26.1",
135 "zen-observable": "^0.8.15"
136 },
137 "xo": {
138 "ignores": [
139 "media/**",
140 "test/fixture/ava-paths/target/test.js",
141 "test/fixture/{source-map-initial,syntax-error}.js",
142 "test/fixture/snapshots/test-sourcemaps/build/**",
143 "test/fixture/power-assert.js",
144 "**/*.ts"
145 ],
146 "rules": {
147 "no-use-extend-native/no-use-extend-native": "off"
148 },
149 "overrides": [
150 {
151 "files": "test/**/*.js",
152 "rules": {
153 "promise/prefer-await-to-then": "off"
154 }
155 },
156 {
157 "files": "test/fixture/**/*.js",
158 "rules": {
159 "import/no-extraneous-dependencies": "off"
160 }
161 }
162 ]
163 },
164 "tap": {
165 "browser": false,
166 "coverage-report": [
167 "html",
168 "lcov",
169 "text"
170 ],
171 "esm": false,
172 "files": [
173 "test/*.js",
174 "test/reporters/*.js",
175 "test/integration/*.js"
176 ],
177 "flow": false,
178 "jobs": 2,
179 "jsx": false,
180 "timeout": 300,
181 "ts": false
182 }
183}