javascript-algorithms/package.json
2020-07-26 12:35:17 +02:00

50 lines
1.3 KiB
JSON

{
"name": "javascript-algorithms-and-data-structures",
"version": "0.0.4",
"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"
},
"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": {
"@babel/cli": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@types/jest": "^24.9.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"husky": "^2.7.0",
"jest": "^24.9.0"
},
"dependencies": {}
}