-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 913 Bytes
/
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
{
"name": "babel-plugin-ignore-import-export",
"version": "1.0.0",
"description": "A simple Babel plugin to ignore import, export default and named exports of your files",
"main": "src/index.js",
"scripts": {
"test": "jest ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patriciunista/babel-plugin-ignore-import-export.git"
},
"keywords": [
"babel",
"babel-plugin",
"remove-import-export",
"ignore-import-export"
],
"author": "Patriciu Nista",
"license": "MIT",
"bugs": {
"url": "https://github.com/patriciunista/babel-plugin-ignore-import-export/issues"
},
"homepage": "https://github.com/patriciunista/babel-plugin-ignore-import-export#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"babel-plugin-tester": "^8.0.1",
"jest": "^29.3.1"
}
}