javascript-algorithms/package.json

50 lines
1.3 KiB
JSON
Raw Normal View History

2018-03-26 04:28:32 +08:00
{
2018-04-27 13:29:22 +08:00
"name": "javascript-algorithms",
2018-03-26 04:28:32 +08:00
"version": "1.0.0",
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": {
2018-03-27 18:03:44 +08:00
"lint": "eslint ./src/*",
2018-03-28 21:25:26 +08:00
"test": "jest",
2018-04-05 11:27:06 +08:00
"ci": "npm run lint && npm run test -- --coverage",
2018-04-04 12:15:22 +08:00
"codecov": "codecov"
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-27 13:51:48 +08:00
"pre-commit": [
"lint",
"test"
],
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",
"javascript-algorithms"
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": {
2018-04-27 13:29:22 +08:00
"@types/jest": "^22.2.3",
2018-03-26 04:28:32 +08:00
"babel-cli": "^6.26.0",
2018-03-27 18:03:44 +08:00
"babel-preset-env": "^1.6.1",
2018-04-27 13:29:22 +08:00
"codecov": "^3.0.1",
2018-03-27 18:03:44 +08:00
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
2018-04-27 13:29:22 +08:00
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
2018-03-27 18:03:44 +08:00
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.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
}