-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "babel-plugin-transform-named-imports",
"version": "2.0.2",
"description": "Transforms named imports into (default) full path imports.",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/SectorLabs/babel-plugin-transform-named-import.git"
},
"author": "Swen Kooij <swen@sectorlabs.ro>",
"license": "MIT",
"dependencies": {
"@babel/types": "^7.0.0-beta.42",
"babel-types": "^6.26.0",
"babylon": "^6.18.0",
"debug": "^4.1.1",
"eslint-import-resolver-webpack": "^0.11.1"
},
"bugs": {
"url": "https://github.com/SectorLabs/babel-plugin-transform-named-import/issues"
},
"homepage": "https://github.com/SectorLabs/babel-plugin-transform-named-import#readme",
"devDependencies": {
"babel-plugin-tester": "^7.0.0",
"babylon-options": "^2.0.1",
"jest": "^24.9.0",
"prettier": "^1.18.2"
},
"scripts": {
"test": "jest",
"format": "prettier --write --config ./prettier.config.json '**/*(*.js|*.jsx)' --loglevel=warn",
"format:verify": "prettier -l --config ./prettier.config.json '**/*(*.js|*.jsx)'"
},
"keywords": [
"babel",
"plugin",
"transform",
"named",
"imports",
"webpack"
]
}