{
  "name": "spreadparser",
  "version": "1.0.0",
  "description": "Small javaScript module to easily parse data from Google Spreadsheet.",
  "main": "dist/umd/spreadparser.js",
  "module": "dist/mjs/spreadparser.mjs",
  "unpkg": "dist/spreadparser.min.js",
  "files": [
    "dist/spreadparser.min.js",
    "dist/spreadparser.min.js.map",
    "dist/umd",
    "dist/mjs",
    "dist/typings",
    "dist/index.html",
    "README.md"
  ],
  "license": "MIT",
  "scripts": {
    "start": "yarn copy:html && rollup -c --watch --environment SERVE:true",
    "build": "yarn copy:html && yarn clear && yarn run typegen && yarn test && rollup -c",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "yarn test -- --coverage",
    "clear": "rm -Rf dist",
    "copy:html": "mkdir -p dist && cp src/index.html dist/index.html",
    "prepublishOnly": "yarn build",
    "typegen": "tsc --declaration --noEmit false --outDir dist/typings/ --emitDeclarationOnly --declarationMap"
  },
  "keywords": [
    "library"
  ],
  "author": "Teles <josetelesmaciel@gmail.com>",
  "devDependencies": {
    "@babel/core": "^7.13.14",
    "@babel/plugin-proposal-class-properties": "^7.13.0",
    "@babel/plugin-proposal-private-methods": "^7.13.0",
    "@babel/plugin-transform-async-to-generator": "^7.13.0",
    "@babel/plugin-transform-regenerator": "^7.12.13",
    "@babel/plugin-transform-runtime": "^7.13.10",
    "@babel/preset-env": "^7.13.12",
    "@babel/preset-typescript": "^7.13.0",
    "@rollup/plugin-babel": "^5.3.0",
    "@rollup/plugin-commonjs": "^15.1.0",
    "@rollup/plugin-node-resolve": "^9.0.0",
    "@types/jest": "^26.0.22",
    "@typescript-eslint/eslint-plugin": "^4.20.0",
    "@typescript-eslint/parser": "^4.20.0",
    "babel-eslint": "^10.1.0",
    "jest": "^26.6.3",
    "rollup": "^2.44.0",
    "rollup-plugin-eslint": "^7.0.0",
    "rollup-plugin-livereload": "^2.0.0",
    "rollup-plugin-serve": "^1.1.0",
    "rollup-plugin-terser": "^7.0.2",
    "typescript": "^4.2.3",
    "ts-jest": "26.5.4"
  }
}
