{
  "name": "is-any-array",
  "version": "2.0.1",
  "description": "Check if a value is any kind of array",
  "main": "./lib/index.js",
  "module": "./lib-esm/index.js",
  "types": "./lib/index.d.ts",
  "files": [
    "lib",
    "lib-esm",
    "src"
  ],
  "scripts": {
    "check-types": "tsc --noEmit",
    "clean": "rimraf lib lib-esm",
    "eslint": "eslint src",
    "eslint-fix": "npm run eslint -- --fix",
    "prepack": "npm run tsc",
    "prettier": "prettier --check src",
    "prettier-write": "prettier --write src",
    "tsc": "npm run clean && npm run tsc-cjs && npm run tsc-esm",
    "tsc-cjs": "tsc --project tsconfig.cjs.json",
    "tsc-esm": "tsc --project tsconfig.esm.json",
    "test": "npm run test-only && npm run eslint && npm run check-types",
    "test-only": "jest --coverage"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/cheminfo-js/is-any-array.git"
  },
  "keywords": [],
  "author": "Luc Patiny <luc@patiny.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/cheminfo-js/is-any-array/issues"
  },
  "homepage": "https://github.com/cheminfo-js/is-any-array#readme",
  "devDependencies": {
    "@types/jest": "^29.5.1",
    "eslint": "^8.39.0",
    "eslint-config-cheminfo-typescript": "^11.3.1",
    "jest": "^29.5.0",
    "prettier": "^2.8.8",
    "rimraf": "^5.0.0",
    "ts-jest": "^29.1.0",
    "typescript": "^5.0.4"
  }
}
