package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "author": "Jake Luer <jake@alogicalparadox.com>",
  3. "name": "chai",
  4. "description": "BDD/TDD assertion library for node.js and the browser. Test framework agnostic.",
  5. "keywords": [
  6. "test",
  7. "assertion",
  8. "assert",
  9. "testing",
  10. "chai"
  11. ],
  12. "homepage": "http://chaijs.com",
  13. "license": "MIT",
  14. "contributors": [
  15. "Jake Luer <jake@alogicalparadox.com>",
  16. "Domenic Denicola <domenic@domenicdenicola.com> (http://domenicdenicola.com)",
  17. "Veselin Todorov <hi@vesln.com>",
  18. "John Firebaugh <john.firebaugh@gmail.com>"
  19. ],
  20. "version": "4.4.1",
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/chaijs/chai"
  24. },
  25. "bugs": {
  26. "url": "https://github.com/chaijs/chai/issues"
  27. },
  28. "main": "./index",
  29. "exports": {
  30. ".": {
  31. "require": "./index.js",
  32. "import": "./index.mjs"
  33. },
  34. "./*": "./*"
  35. },
  36. "scripts": {
  37. "test": "make test"
  38. },
  39. "engines": {
  40. "node": ">=4"
  41. },
  42. "dependencies": {
  43. "assertion-error": "^1.1.0",
  44. "check-error": "^1.0.3",
  45. "deep-eql": "^4.1.3",
  46. "get-func-name": "^2.0.2",
  47. "loupe": "^2.3.6",
  48. "pathval": "^1.1.1",
  49. "type-detect": "^4.0.8"
  50. },
  51. "devDependencies": {
  52. "browserify": "^16.5.2",
  53. "bump-cli": "^2.7.1",
  54. "codecov": "^3.8.3",
  55. "istanbul": "^0.4.5",
  56. "karma": "^6.4.2",
  57. "karma-chrome-launcher": "^2.2.0",
  58. "karma-firefox-launcher": "^1.3.0",
  59. "karma-mocha": "^2.0.1",
  60. "karma-sauce-launcher": "^4.1.4",
  61. "mocha": "^10.2.0"
  62. }
  63. }