-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 945 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
33
34
35
{
"name": "babel-plugin-auto-import-jweboy",
"version": "0.0.2",
"description": "按需加载组件文件和样式,满足日常开发需求",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "/~https://github.com/jweboy/babel-plugin-auto-import-jweboy.git"
},
"keywords": [
"babel-plugin",
"auto-import"
],
"license": "MIT",
"author": "jweboy <jl940630@gmail.com>",
"scripts": {
"test": "mocha --compilers js:@babel/register",
"clean": "rm -rf lib",
"compile": "babel src -d lib",
"prepublish": "npm-run-all --sequential clean compile"
},
"dependencies": {
"@babel/helper-module-imports": "^7.0.0",
"mocha": "^5.2.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"expect": "^23.6.0",
"npm-run-all": "^4.1.3"
}
}