{
  "name": "pretty-easy-data-types",
  "version": "1.1.1",
  "description": "Utility library for checking the data type of a supplied parameter",
  "author": "Ognjen Jevremović <jevremovic.ognjen@gmail.com> (https://github.com/ognjenjevremovic)",
  "homepage": "https://github.com/ognjenjevremovic/pretty-easy-data-types",
  "bugs": {
    "url": "https://github.com/ognjenjevremovic/pretty-easy-data-types/issues",
    "email": "ognjen.jevremovic@gmail.com"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ognjenjevremovic/pretty-easy-data-types.git"
  },
  "license": "MIT",
  "main": "index.js",
  "types": "index.d.ts",
  "engines": {
    "node": ">=1.8"
  },
  "scripts": {
    "test": "mocha ./tests/spec.js",
    
    "compile" : "npm run remove:compiled && npm run tsc && npm run move:test && npm run move:base",
    "remove:compiled": "npm run remove:dist && npm run remove:tests",

    "tsc": "tsc",

    "move:base" : "cp -ap dist/lib/* dist/ && rm -rf dist/lib",
    "move:test" : "cp -ap dist/tests/* tests/ && rm -rf dist/tests",

    "remove:tests": "rm -f tests/*.js && rm -f tests/*.js.map && rm -f tests/*.d.ts && rm -f tests/**/*.js && rm -f tests/**/*.js.map && rm -f tests/**/*.d.ts",
    "remove:dist": "rm -f ./dist/*.js && rm -f ./dist/*.js.map && rm -f ./dist/**/*.js && rm -f ./dist/**/*.js.map"
  },
  "keywords": [
    "pretty-easy-data-types",
    "pretty-easy-*",
    "pretty-easy",
    "prettyeasy",
    "data-types",
    "data types",
    "type-check",
    "type check",
    "check-type",
    "check type",
    "data-type-check",
    "data type check",
    "check-data-type",
    "check data type",
    "value-type-check",
    "value type check",
    "check-value-type",
    "check value type"
  ],
  "devDependencies": {
    "@types/mocha": "^2.2.40",
    "@types/node": "^7.0.8",
    "mocha": "^3.2.0",
    "typescript": "^2.2.1"
  }
}
