{
  "name": "x3-linkedlist",
  "version": "1.0.0",
  "description": "A doubly linked list implementation",
  "engines": {
    "node": ">=8"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "homepage": "https://github.com/x3cion/x3-linkedlist",
  "bugs": {
    "url": "https://github.com/x3cion/x3-linkedlist/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/x3cion/x3-linkedlist.git"
  },
  "keywords": [
    "linkedlist",
    "array",
    "iterator",
    "list",
    "linked",
    "doublelinked"
  ],
  "scripts": {
    "lint": "tslint -p .",
    "test": "jest --coverage",
    "build": "rimraf dist/ && tsc",
    "watch": "rimraf dist/ && tsc -w",
    "doc": "rimraf docs/typedoc && typedoc src/",
    "prepublishOnly": "npm run lint && npm run build && npm run test && npm run doc"
  },
  "author": "Benno Dreißig",
  "license": "MIT",
  "devDependencies": {
    "@types/jest": "24.0.18",
    "@types/node": "8.*",
    "jest": "24.9.0",
    "jest-extended": "0.11.2",
    "ts-jest": "24.1.0",
    "tslint": "5.20.0",
    "tslint-config-prettier": "1.18.0",
    "typedoc": "0.15.0",
    "typedoc-plugin-markdown": "2.2.7",
    "typescript": "3.6.3",
    "rimraf": "3.0.0"
  },
  "dependencies": {}
}
