javascript-algorithms/package.json

53 lines
1.4 KiB
JSON
Raw Normal View History

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
"main": "index.js",
"scripts": {
2020-12-05 05:45:24 +08:00
"lint": "eslint ./src/**",
2018-03-28 21:25:26 +08:00
"test": "jest",
2020-12-05 05:45:24 +08:00
"coverage": "npm run test -- --coverage",
"ci": "npm run lint && npm run coverage",
"prepare": "husky install"
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",
"tree",
"interview",
"interview-preparation"
2018-04-06 14:34:36 +08:00
],
2018-03-26 04:28:32 +08:00
"author": "Oleksii Trekhleb (https://www.linkedin.com/in/trekhleb/)",
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",
2018-03-26 04:28:32 +08:00
"devDependencies": {
2020-12-23 00:08:53 +08:00
"@babel/cli": "7.12.10",
"@babel/preset-env": "7.12.11",
"@types/jest": "26.0.19",
"canvas": "^2.7.0",
2020-12-23 00:08:53 +08:00
"eslint": "7.16.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.21.5",
"husky": "6.0.0",
2020-12-23 00:08:53 +08:00
"jest": "26.6.3"
2018-03-28 20:53:12 +08:00
},
2018-04-27 13:51:48 +08:00
"dependencies": {}
2018-03-26 04:28:32 +08:00
}