{
  "name": "php-serialize",
  "version": "4.1.1",
  "description": "PHP serialize/unserialize in Javascript",
  "main": "lib/cjs/index.js",
  "typings": "lib/typings/index.d.ts",
  "module": "lib/esm/index.js",
  "scripts": {
    "test": "ava",
    "test:update-php-output": "php test/serialize.php > test/serialize.php.out",
    "lint": "(tsc -p . --noEmit) && (eslint . --ext .ts) && (prettier --list-different src/*.ts)",
    "prepare": "yarn build:clean ; yarn build:esm ; yarn build:cjs ; yarn build:typings",
    "build:clean": "rm -rf lib",
    "build:esm": "tsc --module es2015 --target es5 --outDir lib/esm",
    "build:cjs": "tsc --module commonjs --target es5 --outDir lib/cjs",
    "build:typings": "tsc --declaration --outDir lib/typings --emitDeclarationOnly"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/steelbrain/php-serialize.git"
  },
  "author": "steelbrain",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/steelbrain/php-serialize/issues"
  },
  "files": [
    "lib/*"
  ],
  "homepage": "https://github.com/steelbrain/php-serialize#readme",
  "devDependencies": {
    "ava": "^3.7.0",
    "eslint-config-steelbrain": "^9.0.1",
    "ts-node": "^8.8.2",
    "typescript": "^3.8.3"
  },
  "dependencies": {},
  "ava": {
    "files": [
      "test/*-test.ts"
    ],
    "extensions": [
      "ts"
    ],
    "require": [
      "ts-node/register/transpile-only"
    ]
  },
  "engines": {
    "node": ">= 8"
  }
}
