mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-12-19 06:58:15 +08:00
* feat: improved memoize function
used Map instead of object & used the JSON.stringfy method for generate a valid string as a key
* docs: modified documentation
* style: format with standard
* docs: modified stringify doc
* refactor: remove two repetition implementation
* feat: added validation, test codes
* chore: remove useless words
* feat: added types for jest
* chore: added link box
* feat: added new validation test casses & methods
* style: formated with standard
* feat: added parse method & test cases
* docs: added js docs
* chore: added default import export
* feat: imporved algorithm via replace method
* test: added two test cases
* feat: added jest type for suggestions
* feat: added `reduceRight` & `trim` method
* chore: added helper variable
* feat: added new rotation option
* Revert "chore: added helper variable"
This reverts commit 489544da0a.
* remove: yarn lock
* chore: fix grammer
* feat: used replace method & added test case
* feat: remove revert
* chore: added new line
* feat: optimized algo n to n / 2 & replaced test cases
* chore: update node version
* chore: set node version to lts
* chore: updated the node version & added engines prop
* resolve: removed while loop
* chore: added right shift ops comment
* chore: update comment
* chore: removed abs
Co-authored-by: Rak Laptudirm <raklaptudirm@gmail.com>
42 lines
946 B
JSON
42 lines
946 B
JSON
{
|
|
"name": "javascript",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"description": "A repository for All algorithms implemented in Javascript (for educational purposes only)",
|
|
"main": "",
|
|
"scripts": {
|
|
"test": "jest --no-cache",
|
|
"style": "standard",
|
|
"prepare": "husky install"
|
|
},
|
|
"author": "TheAlgorithms",
|
|
"license": "GPL-3.0",
|
|
"dependencies": {
|
|
"@babel/core": "^7.11.6",
|
|
"@babel/plugin-transform-runtime": "^7.11.5",
|
|
"@babel/preset-env": "^7.11.5",
|
|
"atob": "2.1.2",
|
|
"jsdom": "^16.3.0",
|
|
"node": "^16.13.2",
|
|
"node-fetch": "3.1.1"
|
|
},
|
|
"standard": {
|
|
"env": [
|
|
"jest"
|
|
],
|
|
"parser": "@babel/eslint-parser"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/eslint-parser": "^7.17.0",
|
|
"@types/jest": "^27.4.1",
|
|
"babel-jest": "^26.3.0",
|
|
"globby": "^12.0.2",
|
|
"husky": "^7.0.4",
|
|
"jest": "^26.4.2",
|
|
"standard": "^16.0.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.6.0"
|
|
}
|
|
}
|