forked from karlprieb/babel-plugin-add-import-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.01 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
{
"name": "@yleisradio/babel-plugin-add-import-extension",
"version": "1.6.1",
"description": "A babel plugin to add extension on project modules imports",
"main": "src/plugin.js",
"files": [
"src",
"package.json",
"README.md"
],
"scripts": {
"test": "jest tests",
"lint": "standard",
"lint:fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/Yleisradio/babel-plugin-add-import-extension.git"
},
"keywords": [
"babel",
"plugin",
"import",
"export",
"transform",
"extension"
],
"author": "Karl Prieb <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://codeberg.org/karl/babel-plugin-add-import-extension/issues"
},
"peerDependencies": {
"@babel/core": ">=7.0.0"
},
"dependencies": {
"@babel/helper-plugin-utils": "^7.14.5"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-syntax-typescript": "^7.14.5",
"jest": "^27.0.6",
"standard": "^16.0.3"
}
}