-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.09 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
{
"name": "babel-plugin-bundled-import-meta",
"version": "0.3.2",
"description": "Babel plugin to rewrite import.meta for bundled usage",
"scripts": {
"release": "standard-version --sign",
"pretest": "xo",
"test": "tap"
},
"engines": {
"node": ">=10.13.0"
},
"author": "Corey Farrell",
"license": "BSD-3-Clause",
"keywords": [
"babel",
"esm",
"browser",
"import.meta.url",
"rollup"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cfware/babel-plugin-bundled-import-meta.git"
},
"bugs": {
"url": "https://github.com/cfware/babel-plugin-bundled-import-meta/issues"
},
"homepage": "https://github.com/cfware/babel-plugin-bundled-import-meta#readme",
"dependencies": {
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/template": "^7.7.0"
},
"peerDependencies": {
"@babel/core": "^7.7.0"
},
"devDependencies": {
"@babel/core": "^7.7.0",
"standard-version": "^8.0.0",
"tap": "^14.10.6",
"xo": "^0.25.3"
},
"xo": {
"rules": {
"import/order": 0,
"quotes": [
"error",
"single",
{
"avoidEscape": true
}
]
}
}
}