Socket
Socket
Sign inDemoInstall

@ticketevolution/seatmaps-client

Package Overview
Dependencies
89
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.3.4 to 2.0.0

cjs/index.d.ts

167

package.json
{
"name": "@ticketevolution/seatmaps-client",
"version": "1.3.4",
"version": "2.0.0",
"private": false,
"publishConfig": {
"access": "public"
},
"description": "A client side JavaScript library that enables users to view interactive seating charts for tickets available via the Ticket Evolution API.",

@@ -15,81 +19,100 @@ "keywords": [

"repository": "github:ticketevolution/seatmaps-client",
"browser": "build/tevomaps.js",
"author": "Ticket Evolution, Inc.",
"license": "MIT",
"main": "./cjs/index.js",
"module": "./esm/index.mjs",
"types": "./cjs/index.d.ts",
"sideEffects": false,
"files": [
"build"
"cjs",
"esm",
"umd"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.4.2",
"@fortawesome/free-solid-svg-icons": "6.4.2",
"@fortawesome/react-fontawesome": "0.2.0",
"lodash.isequal": "^4.5.0",
"lodash.pick": "^4.4.0",
"lodash.union": "^4.6.0",
"react-toggled": "1.2.7",
"remove": "^0.1.5",
"reselect": "^4.0.0",
"unfetch": "5.0.0"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"devDependencies": {
"@cfaester/enzyme-adapter-react-18": "^0.7.1",
"@jest/expect": "^29.7.0",
"@jest/globals": "29.6.3",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/enzyme": "3.10.14",
"@types/jsdom": "^21.1.3",
"@types/lodash.isequal": "^4.5.6",
"@types/lodash.pick": "^4.4.7",
"@types/lodash.union": "^4.6.7",
"@types/react": "18.2.25",
"@types/react-dom": "18.2.11",
"@types/umd": "^3.0.2",
"@typescript-eslint/eslint-plugin": "6.7.4",
"@typescript-eslint/parser": "6.7.4",
"concurrently": "^8.2.1",
"dotenv-cli": "^7.3.0",
"enzyme": "3.11.0",
"esbuild-plugin-svgr": "^2.1.0",
"esbuild-visualizer": "^0.4.1",
"eslint": "8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-react": "13.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jest": "27.4.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "7.33.2",
"identity-obj-proxy": "^3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-enzyme": "7.1.2",
"jest-fetch-mock": "3.0.3",
"jsdom": "^22.1.0",
"msw": "^1.3.2",
"postcss": "8.4.31",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-toggled": "1.2.7",
"reselect": "4.1.8",
"ts-node": "^10.9.1",
"tsup": "7.2.0",
"typescript": "5.2.2",
"umd": "3.0.3",
"vite": "4.4.11"
},
"scripts": {
"build": "webpack --progress",
"watch": "npm run build -- --watch",
"start": "webpack-dev-server --config examples/using-module/webpack.config.babel.js --context examples/using-module --open",
"start-missing": "webpack-dev-server --config examples/missing-map/webpack.config.babel.js --context examples/missing-map --open",
"analyze": "webpack --profile --json --progress > stats.json",
"check-types": "tsc --noEmit",
"dev": "vite",
"build": "pnpm build:cjs && pnpm build:esm && pnpm build:umd-minimal && pnpm build:umd-standalone",
"build:watch": "concurrently \"pnpm build:cjs --watch\" \"pnpm build:esm --watch\" \"pnpm build:umd-minimal --watch\" \"pnpm build:umd-standalone --watch\"",
"release": "pnpm run build && changeset publish",
"build:cjs": "dotenv -v NODE_ENV=production -- tsup --config ./tsup.config.cjs.ts",
"build:esm": "dotenv -v NODE_ENV=production -- tsup --config ./tsup.config.esm.ts",
"build:umd-minimal": "dotenv -v NODE_ENV=production -v INCLUDE_DEPENDENCIES=false -- tsup --config ./tsup.config.umd.ts",
"build:umd-standalone": "dotenv -v NODE_ENV=production -v INCLUDE_DEPENDENCIES=true -- tsup --config ./tsup.config.umd.ts",
"analyze": "pnpm run analyze:cjs && pnpm run analyze:esm && pnpm run analyze:umd-minimal && pnpm run analyze:umd-standalone",
"analyze:cjs": "esbuild-visualizer --metadata ./lib/metafile-cjs.json --filename ./stats/cjs.html",
"analyze:esm": "esbuild-visualizer --metadata ./lib/metafile-esm.json --filename ./stats/esm.html",
"analyze:umd-minimal": "esbuild-visualizer --metadata ./dist/umd-minimal/metafile-umd.json --filename ./stats/umd-minimal.html",
"analyze:umd-standalone": "esbuild-visualizer --metadata ./dist/umd-standalone/metafile-umd.json --filename ./stats/umd-standalone.html",
"check-ts": "tsc --noEmit",
"lint": "eslint . --ext js --ext jsx --ext ts --ext tsx --cache",
"fix": "npm run lint -- --fix",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:watch": "jest --watch",
"check": "npm run lint && npm run check-types && npm test -- --coverage"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-transform-react-jsx": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/register": "^7.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.12",
"@fortawesome/free-solid-svg-icons": "^5.6.3",
"@fortawesome/react-fontawesome": "^0.1.4",
"@types/enzyme": "^3.9.0",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.9",
"@types/lodash-es": "^4.17.1",
"@types/react": "^16.8.1",
"@types/react-dom": "^16.0.11",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.3.0",
"babel-loader": "^8.0.4",
"compression-webpack-plugin": "^2.0.0",
"css-loader": "^2.0.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint": "^5.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-typescript": "^0.14.0",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.5.0",
"jest-enzyme": "^7.0.2",
"jest-fetch-mock": "^2.1.1",
"lodash-es": "^4.17.11",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-toggled": "1.2.7",
"reselect": "^4.0.0",
"style-loader": "^0.23.1",
"stylelint": "^9.9.0",
"stylelint-config-standard": "^18.2.0",
"ts-jest": "^24.0.0",
"ts-loader": "^5.3.3",
"typescript": "^3.3.1",
"unfetch": "^4.0.1",
"url-loader": "^1.1.2",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.1.5"
"check": "npm run lint && npm run check-ts && npm test -- --coverage"
}
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc