{
  "name": "typedjson-aq",
  "version": "1.9.0-pre4",
  "description": "Typed JSON parsing and serializing for TypeScript that preserves type information, using decorators. Parse JSON into actual class instances.",
  "main": "./lib/cjs/index.js",
  "module": "./lib/esm5/index.js",
  "es2015": "./lib/esm/index.js",
  "types": "./lib/types/index.d.ts",
  "sideEffects": false,
  "size-limit": [
    {
      "path": "./lib/esm/index.js",
      "limit": "8 KB"
    }
  ],
  "scripts": {
    "build": "run-s build:*",
    "build:clean": "rimraf ./lib",
    "build:ts": "tsc --build ./tsconfig/tsconfig.bundle.*.json",
    "coverage": "nyc yarn run test",
    "lint": "eslint \"spec/**/*.ts\" \"src/**/*.ts\"",
    "preversion": "yarn run coverage",
    "size": "size-limit",
    "test": "yarn run test:base node_modules/jasmine/bin/jasmine.js",
    "test:base": "cross-env TS_NODE_PROJECT=tsconfig/tsconfig.spec.json node -r ts-node/register",
    "test:inspect": "yarn run test:base --inspect-brk node_modules/jasmine/bin/jasmine.js",
    "test:ts": "run-p test:ts:*",
    "test:ts:src": "tsc -p tsconfig/tsconfig.app-strict.json",
    "test:ts:spec": "tsc -p tsconfig/tsconfig.spec-strict.json",
    "version": "yarn run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/JohnWhiteTB/TypedJSON.git"
  },
  "author": "John White",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/JohnWhiteTB/TypedJSON/issues"
  },
  "homepage": "https://github.com/JohnWhiteTB/TypedJSON",
  "dependencies": {
    "cross-env": "^7.0.3",
    "tslib": "^2.0.1"
  },
  "devDependencies": {
    "@istanbuljs/nyc-config-typescript": "^1.0.1",
    "@matthiaskunnen/eslint-config-typescript": "^1.2.0",
    "@size-limit/preset-small-lib": "^4.5.7",
    "@types/jasmine": "^3.5.3",
    "eslint-plugin-jasmine": "^4.1.1",
    "husky": "^4.2.5",
    "jasmine": "^3.5.0",
    "lint-staged": "^10.2.13",
    "npm-run-all": "^4.1.5",
    "nyc": "^15.0.0",
    "reflect-metadata": "^0.1.13",
    "rimraf": "^3.0.2",
    "size-limit": "^4.5.7",
    "ts-node": "^8.10.2",
    "typescript": "^3.9.7"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "files": [
    "lib/**/!(*.tsbuildinfo)",
    "src"
  ]
}
