skratchdot/get-object-type

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "get-object-type",
  "version": "0.0.2",
  "description": "get the type of a javascript object.",
  "main": "index.js",
  "scripts": {
    "changelog": "github_changelog_generator -u skratchdot -p get-object-type",
    "clean": "rimraf .nyc_output/ coverage/",
    "cover": "nyc npm test",
    "coveralls": "cat coverage/lcov.info | coveralls --verbose",
    "lint": "eslint *.js",
    "prepublish": "npm-run-all lint test",
    "test": "mocha test.js",
    "watch": "npm-run-all clean --parallel watch:test watch:lint",
    "watch:lint": "watch 'npm run lint' .",
    "watch:test": "npm run test -- -w"
  },
  "author": "skratchdot",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/skratchdot/get-object-type/issues"
  },
  "homepage": "https://github.com/skratchdot/get-object-type",
  "repository": {
    "type": "git",
    "url": "https://github.com/skratchdot/get-object-type"
  },
  "devDependencies": {
    "chai": "^3.5.0",
    "coveralls": "^2.11.12",
    "eslint": "^3.4.0",
    "mocha": "^3.0.2",
    "npm-run-all": "^3.0.0",
    "nyc": "^8.1.0",
    "rimraf": "^2.5.4",
    "watch": "^0.19.2"
  },
  "tonicExampleFilename": ".tonic.example.js",
  "nyc": {
    "all": true,
    "include": [
      "index.js"
    ],
    "reporter": [
      "text",
      "html",
      "lcovonly"
    ]
  },
  "keywords": [
    "object",
    "type",
    "typeof",
    "instance",
    "instanceof",
    "helper"
  ]
}