{
  "name": "classicjs",
  "version": "1.1.3",
  "description": "A JavaScript class implementation with support for private, protected, and public, as well as HTML Custom Elements. Also provides support for instance initialization in the declaration.",
  "main": "Classic.js",
  "directories": {
    "test": "test"
  },
  "scripts": {
    "test": "jest",
    "watch_tests": "jest --watchAll -i --no-cache --verbose"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rdking/ClassicJS.git"
  },
  "keywords": [
    "class",
    "private",
    "protected",
    "fields",
    "prototype",
    "object",
    "proxy"
  ],
  "author": "Ranando D. King",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/rdking/ClassicJS/issues"
  },
  "homepage": "https://github.com/rdking/ClassicJS#readme",
  "dependencies": {},
  "devDependencies": {
    "jest": "^24.9.0"
  },
  "exports": {
    ".": {
      "require": "./Classic.js",
      "import": "./esm/Classic.mjs"
    },
    "./fast": {
      "require": "./fast/Classic.js",
      "import": "./fast/esm/Classic.mjs"
    }
  }
}
