{
  "name": "@0xc/queue",
  "version": "0.1.2-4",
  "description": "Basic queue implementation in TypeScript with generics support",
  "private": false,
  "main": "dist/index.js",
  "scripts": {
    "start": "node dist/index.js",
    "start-ts": "ts-node src/index.ts",
    "start:dev": "TS_NODE_TRANSPILE_ONLY=true TS_NODE_FILES=true nodemon --nolazy -r ts-node/register --inspect=0.0.0.0:23001 -e ts,js,json,md --watch src src/index.ts",
    "format": "prettier --write \"src/**/*.ts\"",
    "lint": "eslint src/**/*.ts",
    "build": "tsc",
    "prebuild:prod": "[ -d dist ] && rm -rf dist || true",
    "build:prod": "tsc -p tsconfig.prod.json",
    "postbuild:prod": "[ -f dist/index.js ]",
    "prepare": "npm run build:prod",
    "test": "jest"
  },
  "files": [
    "dist/*",
    "LICENSE"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/tcarrio/ts-queue.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "TypeScript",
    "Queue",
    "Data Structure",
    "FIFO",
    "Generics"
  ],
  "author": "Tom Carrio <tom@carrio.dev>",
  "devDependencies": {
    "@types/jest": "^25.1.0",
    "@types/node": "^12.12.62",
    "jest": "^25.5.4",
    "jest-junit": "^10.0.0",
    "nodemon": "^2.0.4",
    "prettier": "^1.19.1",
    "ts-jest": "^25.0.0",
    "typescript": "^4.0.3"
  },
  "dependencies": {}
}
