package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "math-expression-evaluator",
  3. "version": "1.4.0",
  4. "description": "A flexible math expression evaluator",
  5. "main": "src/formula_evaluator.js",
  6. "scripts": {
  7. "test": "mocha",
  8. "prepare": "husky install",
  9. "build": "webpack && NODE_ENV=production webpack"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/redhivesoftware/math-expression-evaluator.git"
  14. },
  15. "files": [
  16. "src",
  17. "dist"
  18. ],
  19. "keywords": [
  20. "math",
  21. "expression",
  22. "evaluator",
  23. "parser"
  24. ],
  25. "author": "Ankit<ankitbug94@gmail.com>",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/redhivesoftware/math-expression-evaluator/issues"
  29. },
  30. "homepage": "https://github.com/redhivesoftware/math-expression-evaluator#readme",
  31. "devDependencies": {
  32. "cz-conventional-changelog": "^3.3.0",
  33. "eslint": "^6.6.0",
  34. "eslint-config-standard": "^10.2.1",
  35. "eslint-plugin-import": "^2.2.0",
  36. "eslint-plugin-node": "^4.2.2",
  37. "eslint-plugin-promise": "^3.5.0",
  38. "eslint-plugin-standard": "^3.0.1",
  39. "husky": "^7.0.4",
  40. "mocha": "^2.2.5",
  41. "semantic-release": "^19.0.2",
  42. "webpack-cli": "^4.9.2",
  43. "webpack": "^5.67.0"
  44. },
  45. "config": {
  46. "commitizen": {
  47. "path": "cz-conventional-changelog"
  48. }
  49. }
  50. }