{
  "name": "javascript-problems-and-solutions",
  "version": "3.0.1",
  "description": "A collection of JavaScript problems and solutions for studying algorithms.",
  "main": "index.js",
  "repository": "https://github.com/jeantimex/javascript-problems-and-solutions.git",
  "author": "Yong Su <jean.timex@gmail.com>",
  "license": "MIT",
  "lint-staged": {
    "*.{js,json,md}": [
      "prettier --write"
    ]
  },
  "scripts": {
    "lint": "eslint ./src",
    "mocha": "cross-env NODE_ENV=test nyc mocha ./src/**/*$FILE*-test.js",
    "mocha-dev": "cross-env NODE_ENV=test nyc mocha --watch ./src/**/*$FILE*-test.js",
    "test": "npm run lint && npm run mocha",
    "test-dev": "npm run lint && npm run mocha-dev",
    "coverage": "nyc report --reporter=text-lcov | coveralls",
    "release": "release-it",
    "prepare": "husky"
  },
  "devDependencies": {
    "@babel/cli": "^7.28.3",
    "@babel/core": "^7.28.5",
    "@babel/eslint-parser": "^7.28.5",
    "@babel/preset-env": "^7.28.5",
    "@babel/register": "^7.28.3",
    "babel-plugin-istanbul": "^7.0.0",
    "babel-plugin-module-resolver": "^5.0.2",
    "chai": "^4.5.0",
    "core-js": "^3.47.0",
    "coveralls-next": "^6.0.1",
    "cross-env": "^10.1.0",
    "eslint": "^9.39.2",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.4",
    "husky": "^9.1.7",
    "lint-staged": "^16.2.7",
    "mocha": "^11.7.5",
    "nyc": "^17.1.0",
    "prettier": "^3.7.4",
    "regenerator-runtime": "^0.14.1",
    "release-it": "^19.2.2"
  }
}
