-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
40
41
42
43
44
45
46
47
48
{
"name": "babel-plugin-import-separation",
"version": "1.0.0",
"description": "a plugin for babel to load on demand from import.",
"repository": {
"type": "git",
"url": "https://github.com/Hazyzh/babel-plugin-import-separation"
},
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && ./node_modules/.bin/babel src --out-dir lib --ignore __tests__",
"test": "npm run build && mocha",
"lint": "eslint --ext .js src"
},
"keywords": [
"babel",
"plugins",
"import",
"separation"
],
"author": "Hazyzh",
"license": "MIT",
"babel": {
"presets": [
["umi", {
"commonjs": true,
"disableTransform": true
}]
]
},
"files": [
"lib",
"package.json",
"README.md"
],
"dependencies": {
"@babel/helper-module-imports": "^7.0.0-beta.39"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.39",
"@babel/core": "^7.0.0-beta.39",
"babel-preset-umi": "^0.2.5",
"colors": "^1.1.2",
"eslint": "^4.17.0",
"mocha": "^5.0.0",
"standard": "^10.0.3"
}
}