UNPKG

babel-plugin-jay-universal-import

Version:

Babel plugin to transform import() into its Universal counterpart

89 lines (88 loc) 2.53 kB
{ "name": "babel-plugin-jay-universal-import", "version": "1.0.5", "description": "Babel plugin to transform import() into its Universal counterpart", "main": "index.js", "repository": { "type": "git", "url": "https://github.com/faceyspacey/babel-plugin-universal-import.git" }, "bugs": { "url": "https://github.com/faceyspacey/babel-plugin-universal-import/issues" }, "homepage": "https://github.com/faceyspacey/babel-plugin-universal-import#readme", "author": "James Gillmore <james@faceyspacey.com>", "contributors": [ "Zack Jackson <zack@ScriptedAlchemy.com> (https://github.com/ScriptedAlchemy)" ], "license": "MIT", "scripts": { "test": "jest", "lint": "eslint --fix ./", "format": "prettier --single-quote --parser=flow --semi=false --write '{src,__tests__,__test-helpers__}/**/*.js' && npm run lint", "precommit": "lint-staged && npm test", "cm": "git-cz", "semantic-release": "semantic-release pre && npm publish && semantic-release post" }, "keywords": [ "babel", "universal", "react", "universal import", "redux-first-router", "ruc" ], "devDependencies": { "@babel/cli": "^7.0.0", "@babel/core": "^7.0.0", "@babel/plugin-syntax-dynamic-import": "^7.0.0", "@babel/plugin-transform-modules-commonjs": "^7.0.0", "@babel/preset-react": "^7.0.0", "babel-core": "^7.0.0-0", "babel-eslint": "^9.0.0", "babel-jest": "^21.2.0", "babel-plugin-tester": "^5.0.0", "babylon-options": "^2.0.1", "commitizen": "^2.9.6", "cz-conventional-changelog": "^2.0.0", "eslint": "^3.19.0", "eslint-config-airbnb": "^14.1.0", "eslint-plugin-flowtype": "^2.32.1", "eslint-plugin-import": "^2.2.0", "eslint-plugin-jsx-a11y": "^4.0.0", "eslint-plugin-react": "^6.10.3", "husky": "^0.14.1", "jest": "^21.2.1", "lint-staged": "^5.0.0", "prettier": "^1.5.2", "rimraf": "^2.5.4", "semantic-release": "^6.3.6", "travis-github-status": "^1.6.3" }, "peerDependencies": { "webpack": "^4.4.0" }, "jest": { "testMatch": [ "**/?(*.)(spec|test).js?(x)" ] }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "lint-staged": { "linters": { "*.js": [ "prettier --single-quote --parser=flow --semi=false --write", "eslint --fix", "git add" ] }, "verbose": true }, "dependencies": { "@babel/helper-module-imports": "^7.0.0" } }