{
  "name": "trello-for-wolves",
  "version": "2.0.8",
  "description": "Node.js wrapper for Trello API...for wolves.",
  "engines": {
    "node": ">=14"
  },
  "main": "lib/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/mikerourke/trello-for-wolves"
  },
  "author": "Mike Rourke <mike.w.rourke@gmail.com>",
  "keywords": [
    "trello",
    "api",
    "wolves",
    "wolf"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mikerourke/trello-for-wolves/issues"
  },
  "homepage": "https://github.com/mikerourke/trello-for-wolves#readme",
  "scripts": {
    "prebuild:umd": "rimraf ./umd",
    "build:umd": "parcel build src/index.ts --target browser -d umd --no-cache --no-source-maps --global TrelloForWolves --out-file trello-for-wolves.min.js",
    "prebuild:node": "rimraf ./lib",
    "build:node": "tsc -p tsconfig.build.json",
    "build:all": "npm run build:umd && npm run build:node",
    "prepublishOnly": "npm run build:all",
    "lint": "eslint --ext \".js,.ts,.tsx\" \"{scripts,src}/**/*.{js,mjs,ts}\"",
    "prettier": "prettier --write \"{scripts,src,docs}/**/*.{js,ts,md}\"",
    "test": "jest --config jest.config.json",
    "test:coverage": "cross-env NODE_ENV=test yarn test --coverage",
    "tidy": "rimraf coverage && rimraf lib",
    "typecheck": "tsc -p tsconfig.json --noEmit --skipLibCheck"
  },
  "files": [
    "lib",
    "umd",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "cross-fetch": "^3.0.4",
    "form-data": "^3.0.0",
    "lodash.snakecase": "^4.1.1"
  },
  "devDependencies": {
    "@types/jest": "^27.0.3",
    "@types/jest-in-case": "^1.0.2",
    "@types/lodash.snakecase": "^4.1.6",
    "@typescript-eslint/eslint-plugin": "^5.4.0",
    "@typescript-eslint/parser": "^5.4.0",
    "coveralls": "^2.11.4",
    "cross-env": "^7.0.2",
    "dotenv": "^10.0.0",
    "eslint": "^8.3.0",
    "eslint-plugin-import": "^2.25.3",
    "eslint-plugin-unicorn": "^39.0.0",
    "jest": "^27.3.1",
    "jest-in-case": "^1.0.2",
    "parcel-bundler": "^1.9.4",
    "prettier": "^2.0.5",
    "rimraf": "^3.0.2",
    "ts-jest": "^27.0.7",
    "typescript": "^4.2.4"
  },
  "prettier": {
    "bracketSpacing": true,
    "singleQuote": false,
    "trailingComma": "all"
  }
}
