๐Ÿ“ฆ trekhleb / javascript-algorithms

๐Ÿ“„ package.json ยท 55 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55{
  "name": "javascript-algorithms-and-data-structures",
  "version": "0.0.4",
  "description": "Algorithms and data-structures implemented on JavaScript",
  "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://trekhleb.dev)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/trekhleb/javascript-algorithms/issues"
  },
  "homepage": "https://github.com/trekhleb/javascript-algorithms#readme",
  "main": "index.js",
  "scripts": {
    "lint": "eslint ./src/**",
    "test": "jest",
    "coverage": "npm run test -- --coverage",
    "ci": "npm run lint && npm run coverage",
    "prepare": "husky install"
  },
  "devDependencies": {
    "@babel/cli": "7.20.7",
    "@babel/preset-env": "7.20.2",
    "@types/jest": "29.4.0",
    "eslint": "8.33.0",
    "eslint-config-airbnb": "19.0.4",
    "eslint-plugin-import": "2.27.5",
    "eslint-plugin-jest": "27.2.1",
    "eslint-plugin-jsx-a11y": "6.7.1",
    "husky": "8.0.3",
    "jest": "29.4.1",
    "pngjs": "^7.0.0"
  },
  "engines": {
    "node": ">=16.15.0",
    "npm": ">=8.5.5"
  }
}