UNPKG

1.58 kBJSONView Raw
1{
2 "name": "babel-plugin-import",
3 "version": "1.6.1",
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.2",
28 "babel-core": "^7.0.0-beta.2",
29 "babel-istanbul": "^0.12.2",
30 "babel-plugin-add-module-exports": "^0.1.2",
31 "babel-preset-es2015": "^7.0.0-beta.2",
32 "babel-preset-react": "^7.0.0-beta.2",
33 "babel-preset-stage-0": "^7.0.0-beta.2",
34 "babel-register": "^7.0.0-beta.2",
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 "es2015",
47 "stage-0"
48 ],
49 "plugins": [
50 "add-module-exports"
51 ]
52 },
53 "files": [
54 "lib",
55 "package.json",
56 "README.md"
57 ]
58}