-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "@peterczg/babel-plugin-transform-imports",
"version": "1.1.0",
"description": "Transforms member style imports (import {x} from 'y') into default style imports (import x from 'y/lib/x')",
"keywords": [
"babel",
"transform",
"import",
"custom",
"react-bootstrap",
"lodash"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/peterczg/babel-plugin-transform-imports"
},
"homepage": "https://github.com/peterczg/babel-plugin-transform-imports",
"scripts": {
"test": "mocha --require @babel/register"
},
"author": "peterczg <peterczg@163.com>",
"license": "MIT",
"dependencies": {
"@babel/helper-module-imports": "^7.16.7",
"@babel/helper-plugin-utils": "^7.17.12",
"@babel/types": "^7.4",
"is-valid-path": "^0.1.1"
},
"devDependencies": {
"@babel/core": "^7.4",
"@babel/preset-env": "^7.4",
"@babel/register": "^7.4.4",
"mocha": "^6.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}