{
  "name": "const-name",
  "main": "build/index.js",
  "description": "Infer variable name from call or singular form from JS expression",
  "version": "0.1.0",
  "author": "Vitaly Turovsky <vital2580@icloud.com>",
  "license": "MIT",
  "keywords": [
    "derive",
    "array",
    "item",
    "variable",
    "infer"
  ],
  "devDependencies": {
    "@types/pluralize": "^0.0.29",
    "@zardoy/tsconfig": "^1.5.0",
    "eslint": "^8.16.0",
    "eslint-config-zardoy": "^0.2.11",
    "typescript": "^4.7.2",
    "vitest": "^0.12.9"
  },
  "dependencies": {
    "pluralize": "github:plurals/pluralize#36f03cd2d573fa6d23e12e1529fa4627e2af74b4"
  },
  "release": {
    "initialVersion": {
      "version": "0.1.0"
    }
  },
  "prettier": {
    "semi": false,
    "singleQuote": true,
    "proseWrap": "never",
    "tabWidth": 4,
    "trailingComma": "all",
    "arrowParens": "avoid",
    "printWidth": 160
  },
  "repository": "https://github.com/zardoy/const-name",
  "files": [
    "build"
  ],
  "engines": {
    "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  },
  "types": "build/index.d.ts",
  "scripts": {
    "watch": "tsc -p tsconfig.build.json --watch",
    "test": "vitest --globals",
    "lint": "eslint src/**"
  }
}