package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "supertest",
  3. "version": "4.0.2",
  4. "description": "SuperAgent driven library for testing HTTP servers",
  5. "main": "index.js",
  6. "author": "TJ Holowaychuk",
  7. "contributors": [
  8. "Dimitri DO BAIRRO <dimitri.dobairro@dimsolution.com>"
  9. ],
  10. "license": "MIT",
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/visionmedia/supertest.git"
  14. },
  15. "engines": {
  16. "node": ">=6.0.0"
  17. },
  18. "keywords": [
  19. "superagent",
  20. "request",
  21. "tdd",
  22. "bdd",
  23. "http",
  24. "test",
  25. "testing"
  26. ],
  27. "scripts": {
  28. "lint": "eslint lib/**/*.js test/**/*.js index.js",
  29. "lint:fix": "eslint --fix lib/**/*.js test/**/*.js index.js",
  30. "pretest": "npm run lint",
  31. "test": "nyc --reporter=html --reporter=text mocha --exit --require should --reporter spec --check-leaks",
  32. "coverage": "nyc report --reporter=text-lcov | coveralls"
  33. },
  34. "dependencies": {
  35. "methods": "^1.1.2",
  36. "superagent": "^3.8.3"
  37. },
  38. "devDependencies": {
  39. "body-parser": "^1.18.3",
  40. "cookie-parser": "^1.4.4",
  41. "coveralls": "^3.0.3",
  42. "eslint": "^5.15.1",
  43. "eslint-config-airbnb-base": "^13.1.0",
  44. "eslint-plugin-import": "^2.16.0",
  45. "express": "^4.16.4",
  46. "mocha": "^6.0.2",
  47. "nock": "^10.0.6",
  48. "nyc": "^13.3.0",
  49. "should": "^13.2.3"
  50. }
  51. }