2018-03-25 23:28:32 +03:00
|
|
|
{
|
2018-05-21 14:43:17 +03:00
|
|
|
"name": "javascript-algorithms-and-data-structures",
|
2018-06-02 22:44:43 +03:00
|
|
|
"version": "0.0.4",
|
2018-04-27 08:29:22 +03:00
|
|
|
"description": "Algorithms and data-structures implemented on JavaScript",
|
2018-03-25 23:28:32 +03:00
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2018-03-27 13:03:44 +03:00
|
|
|
"lint": "eslint ./src/*",
|
2018-03-28 16:25:26 +03:00
|
|
|
"test": "jest",
|
2018-04-05 06:27:06 +03:00
|
|
|
"ci": "npm run lint && npm run test -- --coverage",
|
2018-04-04 07:15:22 +03:00
|
|
|
"codecov": "codecov"
|
2018-03-25 23:28:32 +03:00
|
|
|
},
|
2018-04-27 09:03:12 +03:00
|
|
|
"pre-commit": [
|
|
|
|
"lint",
|
|
|
|
"test"
|
|
|
|
],
|
2018-03-25 23:28:32 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2018-04-27 08:29:22 +03:00
|
|
|
"url": "git+https://github.com/trekhleb/javascript-algorithms.git"
|
2018-03-25 23:28:32 +03:00
|
|
|
},
|
2018-04-06 09:34:36 +03:00
|
|
|
"keywords": [
|
2018-04-27 08:29:22 +03:00
|
|
|
"computer-science",
|
2018-04-06 09:34:36 +03:00
|
|
|
"cs",
|
|
|
|
"algorithms",
|
2018-04-27 08:29:22 +03:00
|
|
|
"data-structures",
|
|
|
|
"javascript",
|
|
|
|
"algorithm",
|
2018-05-21 14:35:18 +03:00
|
|
|
"javascript-algorithms",
|
|
|
|
"sorting-algorithms",
|
|
|
|
"graph",
|
|
|
|
"tree"
|
2018-04-06 09:34:36 +03:00
|
|
|
],
|
2018-03-25 23:28:32 +03:00
|
|
|
"author": "Oleksii Trekhleb (https://www.linkedin.com/in/trekhleb/)",
|
2018-04-27 08:29:22 +03:00
|
|
|
"license": "MIT",
|
2018-03-25 23:28:32 +03:00
|
|
|
"bugs": {
|
2018-04-27 08:29:22 +03:00
|
|
|
"url": "https://github.com/trekhleb/javascript-algorithms/issues"
|
2018-03-25 23:28:32 +03:00
|
|
|
},
|
2018-04-27 08:29:22 +03:00
|
|
|
"homepage": "https://github.com/trekhleb/javascript-algorithms#readme",
|
2018-03-25 23:28:32 +03:00
|
|
|
"devDependencies": {
|
2018-07-05 16:30:00 +03:00
|
|
|
"@types/jest": "^23.1.4",
|
2018-03-25 23:28:32 +03:00
|
|
|
"babel-cli": "^6.26.0",
|
2018-05-24 14:34:30 +03:00
|
|
|
"babel-preset-env": "^1.7.0",
|
|
|
|
"codecov": "^3.0.2",
|
2018-03-27 13:03:44 +03:00
|
|
|
"eslint": "^4.19.1",
|
2018-07-05 16:30:00 +03:00
|
|
|
"eslint-config-airbnb": "^17.0.0",
|
|
|
|
"eslint-plugin-import": "^2.13.0",
|
|
|
|
"eslint-plugin-jest": "^21.17.0",
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.1.0",
|
|
|
|
"eslint-plugin-react": "^7.10.0",
|
|
|
|
"jest": "^23.3.0",
|
2018-04-27 09:03:12 +03:00
|
|
|
"pre-commit": "^1.2.2"
|
2018-03-28 15:53:12 +03:00
|
|
|
},
|
2018-04-27 08:51:48 +03:00
|
|
|
"dependencies": {}
|
2018-03-25 23:28:32 +03:00
|
|
|
}
|