mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-11-10 11:09:43 +08:00
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "javascript-algorithms",
|
|
"version": "1.0.0",
|
|
"description": "Algorithms and data-structures implemented on JavaScript",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"lint": "eslint ./src/*",
|
|
"test": "jest",
|
|
"ci": "npm run lint && npm run test -- --coverage",
|
|
"codecov": "codecov"
|
|
},
|
|
"pre-commit": [
|
|
"lint",
|
|
"test"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/trekhleb/javascript-algorithms.git"
|
|
},
|
|
"keywords": [
|
|
"computer-science",
|
|
"cs",
|
|
"algorithms",
|
|
"data-structures",
|
|
"javascript",
|
|
"algorithm",
|
|
"javascript-algorithms"
|
|
],
|
|
"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": "^22.2.3",
|
|
"babel-cli": "^6.26.0",
|
|
"babel-preset-env": "^1.6.1",
|
|
"codecov": "^3.0.1",
|
|
"eslint": "^4.19.1",
|
|
"eslint-config-airbnb": "^16.1.0",
|
|
"eslint-plugin-import": "^2.11.0",
|
|
"eslint-plugin-jest": "^21.15.1",
|
|
"eslint-plugin-jsx-a11y": "^6.0.3",
|
|
"eslint-plugin-react": "^7.7.0",
|
|
"jest": "^22.4.3",
|
|
"pre-commit": "^1.2.2"
|
|
},
|
|
"dependencies": {}
|
|
}
|