package.json 679 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "@hapi/hoek",
  3. "description": "General purpose node utilities",
  4. "version": "9.3.0",
  5. "repository": "git://github.com/hapijs/hoek",
  6. "main": "lib/index.js",
  7. "types": "lib/index.d.ts",
  8. "keywords": [
  9. "utilities"
  10. ],
  11. "files": [
  12. "lib"
  13. ],
  14. "eslintConfig": {
  15. "extends": [
  16. "plugin:@hapi/module"
  17. ]
  18. },
  19. "dependencies": {},
  20. "devDependencies": {
  21. "@hapi/code": "8.x.x",
  22. "@hapi/eslint-plugin": "*",
  23. "@hapi/lab": "^24.0.0",
  24. "typescript": "~4.0.2"
  25. },
  26. "scripts": {
  27. "test": "lab -a @hapi/code -t 100 -L -Y",
  28. "test-cov-html": "lab -a @hapi/code -t 100 -L -r html -o coverage.html"
  29. },
  30. "license": "BSD-3-Clause"
  31. }