UNPKG

1.5 kBJSONView Raw
1{
2 "name": "babel-plugin-import",
3 "version": "1.5.0",
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": "babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha --no-timeouts",
13 "debug": "mocha --require babel-core/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": "^6.3.13",
28 "babel-core": "^6.18.0",
29 "babel-istanbul": "^0.7.0",
30 "babel-plugin-add-module-exports": "^0.1.2",
31 "babel-preset-es2015": "^6.18.0",
32 "babel-preset-react": "^6.16.0",
33 "babel-preset-stage-0": "^6.16.0",
34 "coveralls": "^2.11.6",
35 "eslint": "^2.7.0",
36 "eslint-config-airbnb": "^6.2.0",
37 "expect": "^1.13.4",
38 "material-ui": "^0.15.4",
39 "mocha": "^2.3.4",
40 "pre-commit": "~1.1.2",
41 "react-toolbox": "^1.2.5"
42 },
43 "babel": {
44 "presets": [
45 "es2015",
46 "stage-0"
47 ],
48 "plugins": [
49 "add-module-exports"
50 ]
51 },
52 "files": [
53 "lib",
54 "package.json",
55 "README.md"
56 ]
57}