{
  "_from": "@popperjs/core",
  "_id": "@popperjs/core@2.0.1",
  "_inBundle": false,
  "_integrity": "sha512-Wq+RznTukuinT+CWZSI1bBpJ4Y/AGGnrdiPrnWom8Zu7GDcaIkwUKsYzR8+8knTjp/P55dxC0b1Mc7972SRtLw==",
  "_location": "/@popperjs/core",
  "_phantomChildren": {},
  "_requested": {
    "type": "tag",
    "registry": true,
    "raw": "@popperjs/core",
    "name": "@popperjs/core",
    "escapedName": "@popperjs%2fcore",
    "scope": "@popperjs",
    "rawSpec": "",
    "saveSpec": null,
    "fetchSpec": "latest"
  },
  "_requiredBy": [
    "#USER",
    "/"
  ],
  "_resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.0.1.tgz",
  "_shasum": "e7e6a00a0d691ea9470c667e71eca3b57abc7004",
  "_spec": "@popperjs/core",
  "_where": "D:\\",
  "author": {
    "name": "Federico Zivolo",
    "email": "federico.zivolo@gmail.com"
  },
  "babel": {
    "extends": "./.config/babel.config"
  },
  "bugs": {
    "url": "https://github.com/popperjs/popper.js/issues"
  },
  "bundleDependencies": false,
  "deprecated": false,
  "description": "Tooltip and Popover Positioning Engine",
  "devDependencies": {
    "@ampproject/rollup-plugin-closure-compiler": "^0.20.0",
    "@babel/cli": "^7.8.3",
    "@babel/core": "^7.7.5",
    "@babel/plugin-transform-flow-strip-types": "^7.7.4",
    "@babel/plugin-transform-runtime": "^7.7.6",
    "@babel/preset-env": "^7.7.6",
    "@babel/runtime": "^7.7.6",
    "@khanacademy/flow-to-ts": "^0.1.4",
    "@typescript-eslint/parser": "^2.17.0",
    "arg": "^4.1.2",
    "babel-core": "7.0.0-bridge.0",
    "babel-eslint": "^10.0.3",
    "babel-jest": "^25.1.0",
    "babel-plugin-add-import-extension": "^1.3.0",
    "babel-plugin-annotate-pure-calls": "^0.4.0",
    "babel-plugin-dev-expression": "^0.2.2",
    "babel-plugin-inline-replace-variables": "^1.3.1",
    "babel-plugin-transform-inline-environment-variables": "^0.4.3",
    "chalk": "^3.0.0",
    "concurrently": "^5.0.2",
    "cross-env": "^6.0.3",
    "dotenv": "^8.2.0",
    "eslint": "^6.8.0",
    "eslint-plugin-flowtype": "^4.6.0",
    "eslint-plugin-import": "^2.20.0",
    "eslint-plugin-unused-imports": "^0.1.2",
    "flow-bin": "0.116.1",
    "flow-copy-source": "^2.0.9",
    "get-port-cli": "^2.0.0",
    "glob": "^7.1.6",
    "husky": "^4.2.0",
    "jest": "^25.1.0",
    "jest-environment-jsdom-fourteen": "^1.0.1",
    "jest-environment-puppeteer": "^4.4.0",
    "jest-image-snapshot": "^2.12.0",
    "jest-puppeteer": "^4.4.0",
    "poster": "^0.0.9",
    "prettier": "^1.19.1",
    "pretty-quick": "^2.0.1",
    "puppeteer": "^2.0.0",
    "rollup": "^1.29.1",
    "rollup-plugin-babel": "^4.3.3",
    "rollup-plugin-bundle-size": "^1.0.2",
    "rollup-plugin-flow-entry": "^0.3.3",
    "rollup-plugin-license": "^0.13.0",
    "rollup-plugin-replace": "^2.1.0",
    "rollup-plugin-terser": "^5.2.0",
    "rollup-plugin-visualizer": "^3.3.1",
    "serve": "^11.3.0",
    "trim-right": "^1.0.1",
    "typescript": "^3.7.5",
    "utility-types": "^3.10.0"
  },
  "eslintConfig": {
    "extends": "./.config/eslint.config"
  },
  "files": [
    "index.d.ts",
    "/src",
    "/dist",
    "/lib"
  ],
  "funding": {
    "type": "opencollective",
    "url": "https://opencollective.com/popperjs"
  },
  "homepage": "https://github.com/popperjs/popper.js#readme",
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged"
    }
  },
  "jest": {
    "preset": "./.config/jest.config"
  },
  "license": "MIT",
  "main": "dist/cjs/popper.js",
  "main:umd": "dist/umd/popper.js",
  "module": "lib/popper.js",
  "name": "@popperjs/core",
  "prettier": {
    "semi": true,
    "trailingComma": "es5",
    "singleQuote": true,
    "proseWrap": "always"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/popperjs/popper.js.git"
  },
  "scripts": {
    "build": "yarn clean && yarn build:es && yarn build:mjs && yarn build:bundles && yarn build:flow && yarn build:typescript",
    "build:bundles": "rollup -c .config/rollup.config.js",
    "build:dev": "NODE_ENV=dev babel src -d tests/visual/dist",
    "build:es": "babel src -d lib --ignore '**/*.test.js','**/__mocks__'",
    "build:flow": "flow-copy-source --ignore \"**/*.test.js\" src lib",
    "build:mjs": "MJS=true yarn build:es --out-file-extension=.mjs -d dist/esm",
    "build:typescript": "rimraf dist/typescript; flow-to-ts \"src/**/*.js\" --write --inline-utility-types; node typescript/ts.js --project .config/tsconfig.json --outDir lib; rimraf \"src/**/*.ts\"",
    "clean": "rimraf lib && rimraf dist && rimraf test/visual/dist",
    "dev": "NODE_ENV=dev concurrently 'yarn serve' 'yarn build:dev --watch'",
    "prepublishOnly": "yarn build",
    "serve": "serve -l ${DEV_PORT:-5000} tests/visual",
    "test": "yarn test:unit && yarn test:functional",
    "test:eslint": "eslint .",
    "test:flow": "flow",
    "test:functional": "DEV_PORT=`get-port` jest tests/functional",
    "test:typescript": "tsc --project tests/typescript/tsconfig.json",
    "test:unit": "jest --coverage src"
  },
  "sideEffects": false,
  "unpkg": "dist/umd/popper.min.js",
  "version": "2.0.1"
}
