package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "math-expression-evaluator",
  3. "version": "1.3.14",
  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. "keywords": [
  16. "math",
  17. "expression",
  18. "evaluator",
  19. "parser"
  20. ],
  21. "author": "Ankit<ankitbug94@gmail.com>",
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/redhivesoftware/math-expression-evaluator/issues"
  25. },
  26. "homepage": "https://github.com/redhivesoftware/math-expression-evaluator#readme",
  27. "devDependencies": {
  28. "cz-conventional-changelog": "^3.3.0",
  29. "eslint": "^6.6.0",
  30. "eslint-config-standard": "^10.2.1",
  31. "eslint-plugin-import": "^2.2.0",
  32. "eslint-plugin-node": "^4.2.2",
  33. "eslint-plugin-promise": "^3.5.0",
  34. "eslint-plugin-standard": "^3.0.1",
  35. "husky": "^7.0.4",
  36. "mocha": "^2.2.5",
  37. "semantic-release": "^19.0.2",
  38. "webpack-cli": "^4.9.2",
  39. "webpack": "^5.67.0"
  40. },
  41. "config": {
  42. "commitizen": {
  43. "path": "./node_modules/cz-conventional-changelog"
  44. }
  45. }
  46. }