{
  "name": "dist-javascript-algorithms-and-data-structures",
  "version": "0.1.1",
  "description": "Algorithms and data-structures implemented on JavaScript",
  "main": "index.js",
  "scripts": {
    "lint": "eslint ./src/*",
    "clean": "shx rm -rf dist/",
    "prepare": "npm run build",
    "build": "yarn clean && babel src -d dist",
    "test": "jest",
    "ci": "npm run lint && npm run test -- --coverage"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/trekhleb/javascript-algorithms.git"
  },
  "keywords": [
    "computer-science",
    "cs",
    "algorithms",
    "data-structures",
    "javascript",
    "algorithm",
    "javascript-algorithms",
    "sorting-algorithms",
    "graph",
    "tree",
    "interview",
    "interview-preparation"
  ],
  "author": "Oleksii Trekhleb (https://www.linkedin.com/in/trekhleb/)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/trekhleb/javascript-algorithms/issues"
  },
  "homepage": "https://github.com/trekhleb/javascript-algorithms#readme",
  "devDependencies": {
    "@types/jest": "^23.3.5",
    "@babel/cli": "^7.2.3",
    "@babel/core": "^7.3.3",
    "@babel/plugin-proposal-class-properties": "^7.3.3",
    "@babel/plugin-proposal-object-rest-spread": "^7.3.2",
    "@babel/plugin-syntax-dynamic-import": "^7.2.0",
    "@babel/preset-env": "^7.3.1",
    "eslint": "^4.19.1",
    "eslint-config-airbnb": "^17.1.0",
    "eslint-plugin-import": "^2.14.0",
    "eslint-plugin-jest": "^21.24.1",
    "eslint-plugin-jsx-a11y": "^6.1.2",
    "eslint-plugin-react": "^7.11.1",
    "jest": "^23.6.0",
    "shx": "^0.3.2"
  },
  "dependencies": {}
}
