{
  "name": "@namchee/decora",
  "version": "1.0.5",
  "description": "Useful ECMAScript-compliant decorators to enhance JS (specifically, TypeScript) development experience",
  "main": "build/cjs/index.js",
  "module": "build/esm/index.js",
  "browser": "build/umd/index.js",
  "scripts": {
    "build": "rm -rf build && npm run build:cjs & npm run build:esm & npm run build:umd",
    "build:cjs": "tsc --project tsconfig.build.json --module commonjs --outDir build/cjs",
    "build:esm": "tsc --project tsconfig.build.json --module es2015 --outDir build/esm",
    "build:umd": "tsc --project tsconfig.build.json --module umd --outDir build/umd",
    "lint": "eslint index.ts __tests__/**/*.ts",
    "test": "jest"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Namchee/decorator-ku.git"
  },
  "keywords": [
    "typescript",
    "decorator"
  ],
  "author": {
    "name": "Cristopher Namchee",
    "email": "cristophernamchee12@gmail.com"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Namchee/decora/issues"
  },
  "homepage": "https://github.com/Namchee/decora#readme",
  "devDependencies": {
    "@auto-it/npm": "^10.15.0",
    "@babel/core": "^7.12.17",
    "@babel/plugin-proposal-decorators": "^7.12.13",
    "@babel/preset-env": "^7.12.17",
    "@babel/preset-typescript": "^7.12.17",
    "@types/jest": "^26.0.20",
    "@types/node": "^14.14.22",
    "@typescript-eslint/eslint-plugin": "^4.15.1",
    "@typescript-eslint/parser": "^4.15.1",
    "auto": "^10.15.0",
    "babel-jest": "^26.6.3",
    "eslint": "^7.20.0",
    "eslint-config-google": "^0.14.0",
    "eslint-plugin-jsdoc": "^32.1.0",
    "jest": "^26.6.3",
    "ts-jest": "^26.5.1",
    "typescript": "^4.1.3"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  }
}
