package.json 867 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "javascript",
  3. "version": "1.0.0",
  4. "type": "module",
  5. "description": "A repository for All algorithms implemented in Javascript (for educational purposes only)",
  6. "scripts": {
  7. "test": "jest",
  8. "test-changed": "jest --onlyChanged",
  9. "style": "standard",
  10. "prepare": "husky install"
  11. },
  12. "author": "TheAlgorithms",
  13. "license": "GPL-3.0",
  14. "dependencies": {
  15. "@babel/core": "^7.19.3",
  16. "@babel/plugin-transform-runtime": "^7.19.1",
  17. "@babel/preset-env": "^7.19.4"
  18. },
  19. "devDependencies": {
  20. "@babel/eslint-parser": "^7.19.1",
  21. "@types/jest": "^29.1.2",
  22. "babel-jest": "^29.2.0",
  23. "globby": "^13.1.2",
  24. "husky": "^8.0.1",
  25. "jest": "^29.2.0",
  26. "standard": "^17.0.0"
  27. },
  28. "engines": {
  29. "node": ">=16.6.0"
  30. },
  31. "standard": {
  32. "env": [
  33. "jest"
  34. ],
  35. "parser": "@babel/eslint-parser"
  36. }
  37. }