package.json 670 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "@sideway/pinpoint",
  3. "description": "Return the filename and line number of the calling function",
  4. "version": "2.0.0",
  5. "repository": "git://github.com/sideway/pinpoint",
  6. "main": "lib/index.js",
  7. "types": "lib/index.d.ts",
  8. "files": [
  9. "lib"
  10. ],
  11. "keywords": [
  12. "utilities"
  13. ],
  14. "dependencies": {},
  15. "devDependencies": {
  16. "typescript": "4.0.x",
  17. "@hapi/code": "8.x.x",
  18. "@hapi/lab": "24.x.x"
  19. },
  20. "scripts": {
  21. "test": "lab -a @hapi/code -t 100 -L -Y",
  22. "test-cov-html": "lab -a @hapi/code -t 100 -L -r html -o coverage.html"
  23. },
  24. "license": "BSD-3-Clause"
  25. }