UNPKG

1.64 kBJSONView Raw
1{
2 "name": "babel-plugin-import",
3 "version": "1.6.5",
4 "description": "Component modular import plugin for babel.",
5 "repository": {
6 "type": "git",
7 "url": "https://github.com/ant-design/babel-plugin-import"
8 },
9 "main": "lib/index.js",
10 "scripts": {
11 "build": "rm -rf lib && ./node_modules/.bin/babel src --out-dir lib --ignore __tests__",
12 "test": "node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha -- --require @babel/register --no-timeouts",
13 "debug": "mocha --require @babel/register --require @babel/polyfill --no-timeouts",
14 "lint": "eslint --ext .js src",
15 "coveralls": "cat ./coverage/lcov.info | coveralls"
16 },
17 "pre-commit": [
18 "lint"
19 ],
20 "keywords": [
21 "babel-plugin",
22 "antd"
23 ],
24 "author": "chencheng <sorrycc@gmail.com>",
25 "license": "MIT",
26 "devDependencies": {
27 "@babel/cli": "^7.0.0-beta.34",
28 "@babel/core": "^7.0.0-beta.34",
29 "@babel/polyfill": "^7.0.0-beta.34",
30 "@babel/preset-react": "^7.0.0-beta.40",
31 "@babel/register": "^7.0.0-beta.34",
32 "babel-core": "^7.0.0-0",
33 "babel-istanbul": "^0.12.2",
34 "babel-preset-umi": "^0.2.0",
35 "coveralls": "^2.11.6",
36 "eslint": "^2.7.0",
37 "eslint-config-airbnb": "^6.2.0",
38 "expect": "^1.13.4",
39 "material-ui": "^0.15.4",
40 "mocha": "^2.3.4",
41 "pre-commit": "~1.1.2",
42 "react-toolbox": "^1.2.5"
43 },
44 "babel": {
45 "presets": [
46 ["umi", {
47 "commonjs": true,
48 "disableTransform": true
49 }]
50 ]
51 },
52 "files": [
53 "lib",
54 "package.json",
55 "README.md"
56 ],
57 "dependencies": {
58 "@babel/helper-module-imports": "^7.0.0-beta.34"
59 }
60}