{
  "name": "opentable",
  "description": "Opentable is a fork of Handsontable 6, a JavaScript Spreadsheet Component available for React, Angular and Vue.",
  "homepage": "https://github.com/swsvindland/opentable",
  "repository": {
    "type": "git",
    "url": "https://github.com/swsvindland/opentable.git"
  },
  "author": "Sam Svindland <swsvindland@gmail.com>",
  "version": "6.3.1",
  "browser": "dist/handsontable.js",
  "main": "commonjs/index.js",
  "module": "es/index.js",
  "jsnext:main": "es/index.js",
  "scripts": {
    "clean": "rimraf commonjs es coverage",
    "lint": "eslint src/ test/",
    "test": "yarn run test:unit && yarn run test:types && yarn run test:walkontable && yarn run test:e2e && yarn run test:production",
    "test:walkontable": "yarn run build:walkontable && yarn run test:walkontable.dump && yarn run test:walkontable.puppeteer",
    "test:production": "yarn run build:umd.min && yarn run build:languages.min && yarn run test:production.dump && yarn run test:e2e.puppeteer",
    "test:e2e": "yarn run build:umd && yarn run build:languages && yarn run test:e2e.dump && yarn run test:e2e.puppeteer",
    "test:e2e.watch": "node ./.config/bin/trigger-on-stdout-change.js \"concurrently --raw --kill-others 'yarn run build:umd -- --watch' 'yarn run test:e2e.dump -- --watch'\" \"yarn run test:e2e.puppeteer\"",
    "test:e2e.puppeteer": "node test/scripts/run-puppeteer.js test/E2ERunner.html",
    "test:unit": "cross-env npm_config_testPathPattern=. BABEL_ENV=commonjs env-cmd ./hot.config.js jest --testPathPattern=$npm_config_testPathPattern",
    "test:unit.watch": "cross-env BABEL_ENV=commonjs env-cmd ./hot.config.js jest --testPathPattern=$npm_config_testPathPattern --watch",
    "test:walkontable.puppeteer": "node test/scripts/run-puppeteer.js src/3rdparty/walkontable/test/SpecRunner.html",
    "test:walkontable.dump": "cross-env BABEL_ENV=commonjs_e2e NODE_ENV=test-walkontable env-cmd ./hot.config.js webpack --hide-modules helpers=./src/3rdparty/walkontable/test/helpers/index.js specs=./src/3rdparty/walkontable/test/spec/index.js",
    "test:production.dump": "cross-env BABEL_ENV=commonjs_e2e NODE_ENV=test-production env-cmd ./hot.config.js webpack --hide-modules helpers=./test/helpers/index.js e2e=./test/e2e/index.js",
    "test:e2e.dump": "cross-env BABEL_ENV=commonjs_e2e NODE_ENV=test-e2e env-cmd ./hot.config.js webpack --hide-modules helpers=./test/helpers/index.js e2e=./test/e2e/index.js",
    "test:mobile.dump": "cross-env BABEL_ENV=commonjs_e2e NODE_ENV=test-mobile env-cmd ./hot.config.js webpack --hide-modules helpers=./test/helpers/index.js mobile=./test/e2e/mobile/index.js",
    "test:types": "tsc -p ./test/types",
    "build": "yarn run build:commonjs && yarn run build:es && yarn run build:umd && yarn run build:umd.min && yarn run build:languages && yarn run build:languages.min",
    "build:commonjs": "cross-env BABEL_ENV=commonjs_dist env-cmd ./hot.config.js babel src --out-dir commonjs",
    "build:es": "cross-env BABEL_ENV=es env-cmd ./hot.config.js babel src --out-dir es",
    "build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development env-cmd ./hot.config.js webpack --hide-modules ./src/index.js",
    "build:umd.min": "cross-env BABEL_ENV=commonjs NODE_ENV=production env-cmd ./hot.config.js webpack --hide-modules ./src/index.js",
    "build:walkontable": "cross-env BABEL_ENV=commonjs NODE_ENV=walkontable env-cmd ./hot.config.js webpack --hide-modules ./src/3rdparty/walkontable/src/index.js",
    "build:languages": "cross-env BABEL_ENV=commonjs NODE_ENV=languages-development env-cmd ./hot.config.js webpack",
    "build:languages.min": "cross-env BABEL_ENV=commonjs NODE_ENV=languages-production env-cmd ./hot.config.js webpack",
    "watch": "cross-env BABEL_ENV=commonjs NODE_ENV=watch env-cmd ./hot.config.js webpack --hide-modules --watch src/index.js",
    "prepublish": "yarn run clean && yarn run build:commonjs && yarn run build:es"
  },
  "keywords": [
    "data",
    "grid",
    "table",
    "editor",
    "grid-editor",
    "data-grid",
    "data-table",
    "spreadsheet",
    "excel",
    "tabular-data",
    "edit-cell",
    "editable-table",
    "data-spreadsheet"
  ],
  "dependencies": {
    "moment": "^2.29.3",
    "numbro": "^2.3.6",
    "pikaday": "1.8.2"
  },
  "devDependencies": {
    "@babel/cli": "^7.1.5",
    "@babel/core": "^7.1.6",
    "@babel/plugin-proposal-object-rest-spread": "^7.0.0",
    "@babel/polyfill": "^7.0.0",
    "@babel/preset-env": "^7.1.6",
    "@babel/register": "^7.0.0",
    "babel-core": "7.0.0-bridge.0",
    "babel-eslint": "^7.2.3",
    "babel-jest": "^24.8.0",
    "babel-loader": "^8.0.4",
    "babel-plugin-forbidden-imports": "^0.1.2",
    "babel-plugin-transform-inline-environment-variables": "^0.4.3",
    "babel-plugin-transform-require-ignore": "^0.1.1",
    "check-es3-syntax-cli": "^0.2.0",
    "concurrently": "^3.5.0",
    "copy-webpack-plugin": "^4.6.0",
    "cross-env": "^5.0.1",
    "css-loader": "^0.28.4",
    "ecstatic": "^3.3.2",
    "env-cmd": "^5.1.0",
    "eslint": "^6.0.1",
    "eslint-config-airbnb-base": "^13.2.0",
    "eslint-plugin-import": "^2.18.0",
    "extract-text-webpack-plugin": "^3.0.0",
    "fs-extra": "^4.0.2",
    "glob": "^7.1.2",
    "html-webpack-plugin": "^2.30.1",
    "jasmine-co": "^1.2.2",
    "jasmine-core": "2.5.2",
    "jasmine-terminal-reporter": "^1.0.3",
    "jest": "^23.6.0",
    "jest-cli": "^23.6.0",
    "loader-utils": "^1.1.0",
    "on-build-webpack": "^0.1.0",
    "optimize-css-assets-webpack-plugin": "^3.2.1",
    "progress-bar-webpack-plugin": "^1.10.0",
    "puppeteer": "^1.13.0",
    "request": "^2.81.0",
    "rimraf": "^2.5.4",
    "spawn-command": "0.0.2",
    "string-replace-webpack-plugin": "^0.1.3",
    "style-loader": "^0.18.2",
    "supports-color": "^4.2.1",
    "tree-kill": "^1.2.1",
    "typescript": "^2.4.2",
    "uglifyjs-webpack-plugin": "^1.3.0",
    "webpack": "^3.5.6"
  },
  "license": "MIT",
  "resolutions": {
    "babel-core": "7.0.0-bridge.0"
  },
  "jest": {
    "roots": [
      "./test/unit",
      "./src/plugins"
    ],
    "setupTestFrameworkScriptFile": "<rootDir>/test/bootstrap.js",
    "testRegex": "(\\.spec\\.js)|(\\.unit\\.js)$",
    "testPathIgnorePatterns": [
      "<rootDir>/node_modules/"
    ],
    "moduleNameMapper": {
      "^handsontable(.*)$": "<rootDir>/src$1",
      "^walkontable(.*)$": "<rootDir>/src/3rdparty/walkontable/src$1",
      "\\.css$": "<rootDir>/test/__mocks__/styleMock.js"
    }
  },
  "typings": "./handsontable.d.ts"
}
