2020-06-21 22:08:29 +05:30
|
|
|
{
|
|
|
|
|
"name": "javascript",
|
|
|
|
|
"version": "1.0.0",
|
2021-10-11 16:23:02 +02:00
|
|
|
"type": "module",
|
2020-06-21 22:08:29 +05:30
|
|
|
"description": "A repository for All algorithms implemented in Javascript (for educational purposes only)",
|
|
|
|
|
"scripts": {
|
2022-10-20 15:59:09 +02:00
|
|
|
"test": "jest",
|
|
|
|
|
"test-changed": "jest --onlyChanged",
|
2022-03-09 21:11:14 +06:00
|
|
|
"style": "standard",
|
|
|
|
|
"prepare": "husky install"
|
2020-06-21 22:08:29 +05:30
|
|
|
},
|
|
|
|
|
"author": "TheAlgorithms",
|
|
|
|
|
"license": "GPL-3.0",
|
|
|
|
|
"dependencies": {
|
2022-10-16 12:39:56 +02:00
|
|
|
"@babel/core": "^7.19.3",
|
|
|
|
|
"@babel/plugin-transform-runtime": "^7.19.1",
|
|
|
|
|
"@babel/preset-env": "^7.19.4"
|
2020-10-04 14:38:48 -03:00
|
|
|
},
|
2020-06-28 14:08:17 +05:30
|
|
|
"devDependencies": {
|
2022-10-16 12:39:56 +02:00
|
|
|
"@babel/eslint-parser": "^7.19.1",
|
|
|
|
|
"@types/jest": "^29.1.2",
|
|
|
|
|
"babel-jest": "^29.2.0",
|
|
|
|
|
"globby": "^13.1.2",
|
|
|
|
|
"husky": "^8.0.1",
|
|
|
|
|
"jest": "^29.2.0",
|
|
|
|
|
"standard": "^17.0.0"
|
2022-05-07 18:12:50 +06:00
|
|
|
},
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=16.6.0"
|
2022-10-13 17:27:05 +02:00
|
|
|
},
|
|
|
|
|
"standard": {
|
|
|
|
|
"env": [
|
|
|
|
|
"jest"
|
|
|
|
|
],
|
|
|
|
|
"parser": "@babel/eslint-parser"
|
2020-06-21 22:08:29 +05:30
|
|
|
}
|
2021-10-07 09:03:38 +02:00
|
|
|
}
|