react-joyride
Version:
Create guided tours for your apps
156 lines (155 loc) • 4.96 kB
JSON
{
"name": "react-joyride",
"version": "2.3.2",
"description": "Create guided tours for your apps",
"author": "Gil Barbara <gilbarbara@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/gilbarbara/react-joyride.git"
},
"bugs": {
"url": "https://github.com/gilbarbara/react-joyride/issues"
},
"homepage": "https://react-joyride.com/",
"keywords": [
"react",
"react-component",
"tooltips",
"joyride",
"walkthroughs",
"tour"
],
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"es",
"lib",
"types/*.ts"
],
"types": "./types/index.d.ts",
"peerDependencies": {
"prop-types": "^15.0.0",
"react": "^15.0.0 || ^16.0.0 || ^17.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0"
},
"dependencies": {
"deep-diff": "^1.0.2",
"deepmerge": "^4.2.2",
"exenv": "^1.2.2",
"is-lite": "^0.8.1",
"nested-property": "^4.0.0",
"react-floater": "^0.7.3",
"react-is": "^16.13.1",
"scroll": "^3.0.1",
"scrollparent": "^2.0.1",
"tree-changes": "^0.7.1"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.15.8",
"@babel/plugin-proposal-do-expressions": "^7.14.5",
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@babel/plugin-proposal-export-namespace-from": "^7.14.5",
"@babel/plugin-proposal-function-sent": "^7.14.5",
"@babel/plugin-proposal-json-strings": "^7.14.5",
"@babel/plugin-proposal-logical-assignment-operators": "^7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-numeric-separator": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-proposal-pipeline-operator": "^7.15.0",
"@babel/plugin-proposal-throw-expressions": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-flow-strip-types": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-flow": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@size-limit/preset-big-lib": "^6.0.2",
"@types/react": "^16.14.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.2.5",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-jsx-remove-data-test-id": "^3.0.0",
"babel-plugin-transform-node-env-inline": "^0.4.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"caniuse-lite": "^1.0.30001265",
"cross-env": "^7.0.3",
"dtslint": "^4.1.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-flowtype": "^6.1.0",
"eslint-plugin-import": "^2.25.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"flow-bin": "^0.110.1",
"husky": "^4.3.8",
"is-ci-cli": "^2.2.0",
"jest": "^27.2.5",
"jest-enzyme": "^7.1.2",
"jest-extended": "^0.11.5",
"jest-watch-typeahead": "^1.0.0",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"repo-tools": "^0.2.2",
"rimraf": "^3.0.2",
"rollup": "^2.58.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"size-limit": "^6.0.1",
"typescript": "^4.4.3"
},
"scripts": {
"build": " npm run clean && npm run build:scripts",
"build:scripts": "cross-env NODE_ENV=production rollup -c",
"watch": "rollup -cw",
"clean": "rimraf es && rimraf lib",
"lint": "eslint --ext .js,.jsx src test",
"test": "is-ci \"test:coverage\" \"test:watch\"",
"test:coverage": "jest --bail --coverage",
"test:watch": "jest --watchAll --verbose",
"format": "prettier \"**/*.{js,jsx,ts,tsx}\" --write",
"validate": "npm run lint && npm run test:coverage && flow && npm run build && npm run size",
"size": "size-limit",
"prepublishOnly": "npm run validate"
},
"size-limit": [
{
"path": "./es/index.js",
"limit": "32 kB"
},
{
"path": "./lib/index.js",
"limit": "32 kB"
}
],
"husky": {
"hooks": {
"pre-commit": "repo-tools check-remote && lint-staged && flow",
"post-merge": "repo-tools install-packages"
}
},
"lint-staged": {
"*.js?(x)": [
"eslint --fix",
"jest --findRelatedTests"
],
"*.(css|graphql|js|json|jsx|less|md|mdx|scss|ts|tsx|yaml|yml)": [
"prettier --write",
"git add"
]
}
}