{
  "name": "ts-serialize",
  "version": "1.3.2",
  "description": "Serialization using Typescript decorators and metadata reflection",
  "keywords": [
    "typescript",
    "es6",
    "ts",
    "serialize",
    "serializable",
    "serialization",
    "marshallling",
    "unmarshalling",
    "decorators"
  ],
  "author": "Thomas Winckell",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/thomaswinckell/ts-serialize.git"
  },
  "main": "index.js",
  "types": "index.d.ts",
  "files": [
    "src/**/*.js",
    "src/**/*.d.ts",
    "index.d.ts",
    "index.js",
    "tsconfig.json",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "clean": "rm -rf src/**/*.js && rm -rf src/**/*.d.ts && rm -rf test/**/*.js && rm -rf test/**/*.d.ts",
    "preBuild": "npm run clean",
    "build": "tsc && babel ./src --out-dir ./src --ignore ./node_modules/",
    "test": "npm run build && istanbul cover -x '**/logger.*' _mocha test/**/*.js"
  },
  "peerDependencies": {
    "scalts": "1.1.*",
    "scalts-array": "0.7.*",
    "ts-json-definition": "0.0.*"
  },
  "devDependencies": {
    "@types/lodash": "^4.14.63",
    "@types/mocha": "^2.2.41",
    "@types/power-assert": "^1.4.29",
    "babel-cli": "6.24.1",
    "babel-preset-es2015": "6.24.1",
    "babel-preset-stage-0": "6.24.1",
    "codeclimate-test-reporter": "^0.4.1",
    "istanbul": "^0.4.5",
    "lodash": "^4.17.4",
    "mocha": "^3.3.0",
    "power-assert": "^1.4.2",
    "scalts": "^1.1.0",
    "scalts-array": "^0.7.0",
    "ts-json-definition": "^0.0.2",
    "typescript": "^2.3.1",
    "typings": "^2.1.1"
  }
}
