package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@exercism/typescript-resistor-color-trio",
  3. "version": "1.0.0",
  4. "description": "Exercism practice exercise on resistor-color-trio",
  5. "author": "Katrina Owen",
  6. "contributors": [
  7. "Derk-Jan Karrenbeld <derk-jan+git@karrenbeld.info> (https://derk-jan.com)"
  8. ],
  9. "private": true,
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/exercism/typescript"
  13. },
  14. "type": "module",
  15. "engines": {
  16. "node": "^18.16.0 || >=20.0.0"
  17. },
  18. "devDependencies": {
  19. "@exercism/babel-preset-typescript": "^0.4.0",
  20. "@exercism/eslint-config-typescript": "^0.5.0",
  21. "@types/jest": "^29.5.2",
  22. "@types/node": "~18.16.16",
  23. "babel-jest": "^29.5.0",
  24. "core-js": "~3.30.2",
  25. "eslint": "^8.42.0",
  26. "jest": "^29.5.0",
  27. "typescript": "~5.0.4"
  28. },
  29. "scripts": {
  30. "test": "yarn lint:types && jest --no-cache",
  31. "lint": "yarn lint:types && yarn lint:ci",
  32. "lint:types": "yarn tsc --noEmit -p .",
  33. "lint:ci": "eslint . --ext .tsx,.ts"
  34. },
  35. "packageManager": "yarn@3.6.4"
  36. }