package.json 690 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "@sideway/formula",
  3. "description": "Math and string formula parser.",
  4. "version": "3.0.1",
  5. "repository": "git://github.com/sideway/formula",
  6. "main": "lib/index.js",
  7. "types": "lib/index.d.ts",
  8. "keywords": [
  9. "formula",
  10. "parser",
  11. "math",
  12. "string"
  13. ],
  14. "files": [
  15. "lib"
  16. ],
  17. "dependencies": {},
  18. "devDependencies": {
  19. "typescript": "4.0.x",
  20. "@hapi/code": "8.x.x",
  21. "@hapi/lab": "24.x.x"
  22. },
  23. "scripts": {
  24. "test": "lab -a @hapi/code -t 100 -L -Y",
  25. "test-cov-html": "lab -a @hapi/code -t 100 -L -r html -o coverage.html"
  26. },
  27. "license": "BSD-3-Clause"
  28. }