package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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.3.4",
  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.2",
  45. "deep-eql": "^3.0.1",
  46. "get-func-name": "^2.0.0",
  47. "pathval": "^1.1.1",
  48. "type-detect": "^4.0.5"
  49. },
  50. "devDependencies": {
  51. "browserify": "^16.2.3",
  52. "bump-cli": "^1.1.3",
  53. "codecov": "^3.0.0",
  54. "istanbul": "^0.4.3",
  55. "karma": "^6.1.1",
  56. "karma-chrome-launcher": "^2.2.0",
  57. "karma-firefox-launcher": "^1.0.0",
  58. "karma-mocha": "^2.0.1",
  59. "karma-sauce-launcher": "^1.2.0",
  60. "mocha": "^7.1.2"
  61. }
  62. }