stoplightio/scripts

View on GitHub
vendor/rollup-plugin-optimize-lodash-imports/transform/package.json

Summary

Maintainability
Test Coverage
{
  "name": "@optimize-lodash/transform",
  "version": "2.1.0",
  "description": "Rewrites lodash imports in a given source file to be specific.",
  "keywords": [
    "lodash",
    "optimize"
  ],
  "homepage": "https://github.com/kyle-johnson/rollup-plugin-optimize-lodash-imports/tree/main/packages/transform",
  "repository": {
    "type": "git",
    "url": "https://github.com/kyle-johnson/rollup-plugin-optimize-lodash-imports.git"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "author": "Kyle Johnson",
  "license": "MIT",
  "engines": {
    "node": ">= 12"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "type-check": "tsc --noEmit",
    "lint": "eslint .",
    "test": "jest",
    "test:ci": "jest --coverage --ci",
    "build": "rm -rf dist && tsc -p tsconfig.dist.json",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "depcheck": "depcheck"
  },
  "jest": {
    "coverageDirectory": "coverage",
    "testEnvironment": "node",
    "preset": "ts-jest",
    "globals": {
      "ts-jest": {}
    }
  },
  "devDependencies": {
    "@tsconfig/node12": "1.0.9",
    "@types/estree": "0.0.50",
    "@types/jest": "27.0.3",
    "@types/lodash": "4.14.177",
    "@types/node": "12.20.37",
    "@typescript-eslint/eslint-plugin": "5.4.0",
    "@typescript-eslint/parser": "5.4.0",
    "acorn": "8.5.0",
    "depcheck": "1.4.2",
    "eslint": "8.2.0",
    "eslint-config-prettier": "8.3.0",
    "eslint-plugin-jest": "25.2.4",
    "eslint-plugin-unicorn": "38.0.1",
    "jest": "27.3.1",
    "prettier": "2.4.1",
    "ts-jest": "27.0.7",
    "typescript": "4.3.5"
  },
  "dependencies": {
    "estree-walker": "2.x",
    "magic-string": "0.25.x"
  }
}