{ "name": "tippy.js", "version": "4.3.5", "description": "Highly customizable tooltip and popover library", "main": "./umd/index.all.js", "module": "./esm/index.all.js", "unpkg": "./umd/index.all.min.js", "types": "index.d.ts", "author": "atomiks", "contributors": [ "Brett Zamir" ], "license": "MIT", "bugs": "https://github.com/atomiks/tippyjs/issues", "homepage": "https://atomiks.github.io/tippyjs/", "keywords": [ "tooltip", "popover", "tippy", "tippy.js" ], "files": [ "umd", "esm", "themes", "index.css", "index.d.ts" ], "repository": { "type": "git", "url": "git+https://github.com/atomiks/tippyjs.git" }, "scripts": { "dev": "parcel demo/index.html -d .devserver --open", "build": "node rollup.build.js && bundlesize", "test": "jest --coverage", "check-types": "tsc", "lint": "eslint --report-unused-disable-directives .", "clean": "rimraf umd esm themes coverage .devserver .cache ./index.css", "prepare": "npm run clean && npm run build" }, "jest": { "setupFiles": [ "./test/setup.js" ], "testRegex": "./test/.*.test.js$" }, "browserslist": [ "android 4.4", "not dead", "not safari < 8" ], "bundlesize": [ { "path": "./esm/index.min.js", "maxSize": "7 kB" }, { "path": "./index.css", "maxSize": "2 kB" } ], "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "src/**/*.ts": [ "jest --findRelatedTests", "eslint", "git add" ], "{build,src,test,website/src}/**/*.{ts,js,json,css,scss,md}": [ "prettier --write", "git add" ] }, "devDependencies": { "@babel/core": "^7.4.5", "@babel/plugin-proposal-object-rest-spread": "^7.3.1", "@babel/preset-env": "^7.4.5", "@babel/preset-typescript": "^7.3.3", "@typescript-eslint/eslint-plugin": "^1.9.0", "@typescript-eslint/parser": "^1.9.0", "autoprefixer": "^9.5.0", "babel-jest": "^24.5.0", "bundlesize": "^0.17.2", "colorette": "^1.0.8", "cssnano": "^4.1.10", "eslint": "^5.12.0", "eslint-config-prettier": "^4.3.0", "husky": "^1.3.1", "jest": "^24.0.0", "lint-staged": "^8.1.7", "node-sass": "^4.10.0", "parcel-bundler": "^1.12.3", "postcss": "^7.0.14", "prettier": "^1.17.1", "promise": "^8.0.3", "rimraf": "^2.6.3", "rollup": "^1.13.1", "rollup-plugin-babel": "^4.3.2", "rollup-plugin-commonjs": "^9.2.0", "rollup-plugin-css-only": "^0.4.0", "rollup-plugin-json": "^3.1.0", "rollup-plugin-node-resolve": "^4.2.4", "rollup-plugin-replace": "^2.2.0", "rollup-plugin-sass": "^1.1.0", "rollup-plugin-terser": "^4.0.3", "typescript": "^3.5.1" }, "dependencies": { "popper.js": "^1.14.7" } }