{
  "name": "@apiobuild/penny",
  "version": "0.1.23",
  "description": "Penny is a js library for order validation",
  "main": "./index.js",
  "scripts": {
    "lint": "eslint src",
    "lint:fix": "npm run lint -- --fix",
    "dev": "watch 'npm run build' src",
    "build": "babel src -d dist",
    "test": "jest src --coverage --verbose",
    "test:watch": "npm test -- --watchAll"
  },
  "eslintConfig": {
    "parser": "@babel/eslint-parser",
    "plugins": [
      "@babel"
    ],
    "parserOptions": {
      "ecmaVersion": 6,
      "sourceType": "module",
      "ecmaFeatures": {
        "modules": true
      }
    },
    "env": {
      "jest": true
    },
    "extends": "airbnb-base",
    "rules": {
      "max-classes-per-file": 0,
      "import/no-extraneous-dependencies": 0
    },
    "globals": {
      "fetch": true
    }
  },
  "babel": {
    "env": {
      "test": {
        "plugins": [
          "@babel/plugin-transform-modules-commonjs"
        ]
      },
      "production": {
        "presets": [
          "minify"
        ]
      }
    },
    "sourceType": "module",
    "presets": [
      [
        "@babel/preset-env",
        {
          "targets": {
            "browsers": [
              ">1%",
              "not ie 11",
              "not op_mini all"
            ]
          },
          "modules": false
        }
      ]
    ],
    "plugins": [
      [
        "@babel/plugin-transform-runtime",
        {
          "regenerator": true
        }
      ]
    ]
  },
  "files": [
    "index.js"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/apiobuild/penny.git"
  },
  "author": "l1990790120",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/apiobuild/penny/issues"
  },
  "jest": {
    "automock": false,
    "resetMocks": false
  },
  "homepage": "https://github.com/apiobuild/penny#readme",
  "devDependencies": {
    "@babel/cli": "^7.14.8",
    "@babel/core": "^7.14.8",
    "@babel/eslint-parser": "^7.14.7",
    "@babel/eslint-plugin": "^7.14.5",
    "@babel/plugin-transform-modules-commonjs": "^7.14.5",
    "@babel/plugin-transform-runtime": "^7.14.5",
    "@babel/preset-env": "^7.14.8",
    "babel-preset-minify": "^0.5.1",
    "eslint": "^7.31.0",
    "eslint-config-airbnb-base": "^14.2.1",
    "eslint-plugin-import": "^2.23.4",
    "jest": "^26.6.3",
    "jest-fetch-mock": "^3.0.3",
    "watch": "^1.0.2"
  },
  "dependencies": {
    "@babel/runtime": "^7.14.8",
    "es6-promise": "^4.2.8",
    "isomorphic-fetch": "^3.0.0"
  }
}
