2018-03-26 04:28:32 +08:00
|
|
|
{
|
2018-05-21 19:43:17 +08:00
|
|
|
"name": "javascript-algorithms-and-data-structures",
|
2018-06-03 03:44:43 +08:00
|
|
|
"version": "0.0.4",
|
2018-04-27 13:29:22 +08:00
|
|
|
"description": "Algorithms and data-structures implemented on JavaScript",
|
2018-03-26 04:28:32 +08:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2018-04-27 13:29:22 +08:00
|
|
|
"url": "git+https://github.com/trekhleb/javascript-algorithms.git"
|
2018-03-26 04:28:32 +08:00
|
|
|
},
|
2018-04-06 14:34:36 +08:00
|
|
|
"keywords": [
|
2018-04-27 13:29:22 +08:00
|
|
|
"computer-science",
|
2018-04-06 14:34:36 +08:00
|
|
|
"cs",
|
|
|
|
"algorithms",
|
2018-04-27 13:29:22 +08:00
|
|
|
"data-structures",
|
|
|
|
"javascript",
|
|
|
|
"algorithm",
|
2018-05-21 19:35:18 +08:00
|
|
|
"javascript-algorithms",
|
|
|
|
"sorting-algorithms",
|
|
|
|
"graph",
|
2018-09-04 17:29:57 +08:00
|
|
|
"tree",
|
|
|
|
"interview",
|
|
|
|
"interview-preparation"
|
2018-04-06 14:34:36 +08:00
|
|
|
],
|
2022-01-22 16:58:38 +08:00
|
|
|
"author": "Oleksii Trekhleb (https://trekhleb.dev)",
|
2018-04-27 13:29:22 +08:00
|
|
|
"license": "MIT",
|
2018-03-26 04:28:32 +08:00
|
|
|
"bugs": {
|
2018-04-27 13:29:22 +08:00
|
|
|
"url": "https://github.com/trekhleb/javascript-algorithms/issues"
|
2018-03-26 04:28:32 +08:00
|
|
|
},
|
2018-04-27 13:29:22 +08:00
|
|
|
"homepage": "https://github.com/trekhleb/javascript-algorithms#readme",
|
2022-01-22 16:58:38 +08:00
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
|
|
|
"lint": "eslint ./src/**",
|
|
|
|
"test": "jest",
|
|
|
|
"coverage": "npm run test -- --coverage",
|
|
|
|
"ci": "npm run lint && npm run coverage",
|
|
|
|
"prepare": "husky install"
|
|
|
|
},
|
2018-03-26 04:28:32 +08:00
|
|
|
"devDependencies": {
|
2023-01-30 15:19:38 +08:00
|
|
|
"@babel/cli": "7.20.7",
|
|
|
|
"@babel/preset-env": "7.20.2",
|
|
|
|
"@types/jest": "29.4.0",
|
|
|
|
"eslint": "8.33.0",
|
2022-01-22 16:58:38 +08:00
|
|
|
"eslint-config-airbnb": "19.0.4",
|
2023-01-30 15:19:38 +08:00
|
|
|
"eslint-plugin-import": "2.27.5",
|
|
|
|
"eslint-plugin-jest": "27.2.1",
|
|
|
|
"eslint-plugin-jsx-a11y": "6.7.1",
|
|
|
|
"husky": "8.0.3",
|
2023-04-11 00:31:06 +08:00
|
|
|
"jest": "29.4.1",
|
|
|
|
"pngjs": "^7.0.0"
|
2018-03-28 20:53:12 +08:00
|
|
|
},
|
2021-04-21 22:55:26 +08:00
|
|
|
"engines": {
|
2023-01-30 15:19:38 +08:00
|
|
|
"node": ">=16.15.0",
|
|
|
|
"npm": ">=8.5.5"
|
2021-04-21 22:55:26 +08:00
|
|
|
}
|
2018-03-26 04:28:32 +08:00
|
|
|
}
|