bitsnap/babel-plugin-lodash-magic-import

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "babel-plugin-lodash-magic-import",
  "description": "Transforms lodash imports into tree-shakeable ones",
  "version": "0.2.2",
  "authors": [
    "Alex Veligura <veligura@outlook.com>",
    "Yuriy Yarosh <void.nugget@gmail.com>"
  ],
  "devDependencies": {
    "@babel/cli": "^7.2.3",
    "@babel/core": "^7.2.2",
    "@babel/plugin-external-helpers": "^7.2.0",
    "@babel/preset-env": "^7.2.3",
    "@babel/register": "^7.0.0",
    "babel-eslint": "^10.0.1",
    "babel-plugin-istanbul": "^5.1.0",
    "babel-plugin-module-resolver": "^3.1.1",
    "babel-preset-minify": "^0.5.0",
    "coveralls": "^3.0.2",
    "eclint": "^2.8.1",
    "eslint": "^5.8.0",
    "eslint-config-airbnb": "^17.1.0",
    "eslint-plugin-import": "^2.14.0",
    "eslint-plugin-jsx-a11y": "^6.1.2",
    "eslint-plugin-lodash-fp": "^2.2.0-a1",
    "eslint-plugin-react": "^7.11.1",
    "eslint-plugin-unicorn": "^7.0.0",
    "fixpack": "^2.3.1",
    "husky": "^1.2.1",
    "jsonlint": "^1.6.3",
    "lint-staged": "^8.1.0",
    "nyc": "^13.1.0",
    "rollup": "^1.0.0",
    "rollup-plugin-babel": "^4.1.0",
    "tape": "^4.9.1"
  },
  "files": [
    "dist/lodash-magic-import.min.js",
    "dist/lodash-magic-import.min.js.map"
  ],
  "keywords": [
    "babel",
    "import",
    "lodash",
    "transform"
  ],
  "license": "MIT",
  "main": "dist/lodash-magic-import.min.js",
  "nyc": {
    "sourceMap": false,
    "instrument": false,
    "exclude": [
      "test/*.js"
    ]
  },
  "peerDependencies": {
    "lodash": "^4.17.11"
  },
  "repository": "github:bitsnap/babel-plugin-lodash-magic-import",
  "scripts": {
    "build": "./node_modules/.bin/rollup -c rollup.config.js",
    "format": "./node_modules/.bin/eslint --fix src/**/*.js test/**/*.js",
    "test": "./node_modules/.bin/nyc --reporter=lcov ./node_modules/.bin/tape -r @babel/register ./test/*.test.js",
    "test-build": "./node_modules/.bin/tape -r @babel/register ./test/build.js"
  }
}