-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 1.73 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@ava/babel",
"version": "2.0.0",
"description": "Babel provider for AVA",
"engines": {
"node": ">=12.22 <13 || >=14.16 <15 || >=16"
},
"files": [
"espower-patterns.json",
"index.js",
"stage-4.js",
"transform-test-files.js",
"throws-helper.js",
"stage-4-plugins"
],
"author": "Mark Wubben (https://novemberborn.net)",
"repository": "avajs/babel",
"license": "MIT",
"keywords": [
"ava",
"babel"
],
"scripts": {
"test": "xo && c8 ava"
},
"dependencies": {
"@ava/require-precompiled": "^1.0.0",
"@babel/core": "^7.14.6",
"@babel/generator": "^7.14.5",
"@babel/plugin-proposal-dynamic-import": "^7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"babel-plugin-espower": "^3.0.1",
"concordance": "^5.0.4",
"convert-source-map": "^1.8.0",
"dot-prop": "^6.0.1",
"empower-core": "^1.2.0",
"escape-string-regexp": "^4.0.0",
"find-up": "^5.0.0",
"is-plain-object": "^5.0.0",
"md5-hex": "^3.0.1",
"package-hash": "^4.0.0",
"pkg-conf": "^3.1.0",
"source-map-support": "^0.5.19",
"strip-bom-buf": "^2.0.0",
"write-file-atomic": "^3.0.3"
},
"devDependencies": {
"ava": "^3.15.0",
"c8": "^7.7.3",
"execa": "^5.1.1",
"proxyquire": "^2.1.3",
"tempy": "^1.0.1",
"xo": "^0.39.1"
},
"ava": {
"files": [
"test/**/*.js",
"!test/fixtures/**/*.js"
]
},
"c8": {
"reporter": [
"html",
"lcov",
"text"
]
},
"xo": {
"ignore": "test/fixtures/syntax.js",
"rules": {
"import/order": "off"
}
}
}