forked from PavelDymkov/babel-plugin-auto-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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": "babel-plugin-auto-import",
"version": "1.1.0",
"description": "Babel plugin for variable auto imports",
"main": "lib/index.js",
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"dev": "rimraf lib && babel src --out-dir lib --source-maps --watch",
"prepublish": "npm run build",
"test": "npm run build && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PavelDymkov/babel-plugin-auto-import.git"
},
"keywords": [
"babel-plugin",
"import",
"module"
],
"author": "Pavel Dymkov <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/PavelDymkov/babel-plugin-auto-import/issues"
},
"homepage": "https://github.com/PavelDymkov/babel-plugin-auto-import#readme",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/preset-env": "^7.11.0",
"babel-plugin-transform-enum-literal": "^1.0.5",
"chai": "^4.2.0",
"mocha": "^8.1.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"@babel/core": "^7.11.1",
"logical-not": "^1.0.1"
}
}