package.json 915 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "cookies",
  3. "description": "Cookies, optionally signed using Keygrip.",
  4. "version": "0.8.0",
  5. "author": "Jed Schmidt <tr@nslator.jp> (http://jed.is)",
  6. "contributors": [
  7. "Douglas Christopher Wilson <doug@somethingdoug.com>"
  8. ],
  9. "license": "MIT",
  10. "repository": "pillarjs/cookies",
  11. "dependencies": {
  12. "depd": "~2.0.0",
  13. "keygrip": "~1.1.0"
  14. },
  15. "devDependencies": {
  16. "eslint": "4.19.1",
  17. "express": "4.17.1",
  18. "mocha": "6.2.1",
  19. "nyc": "14.1.1",
  20. "restify": "8.4.0",
  21. "supertest": "4.0.2"
  22. },
  23. "files": [
  24. "HISTORY.md",
  25. "LICENSE",
  26. "README.md",
  27. "index.js"
  28. ],
  29. "engines": {
  30. "node": ">= 0.8"
  31. },
  32. "scripts": {
  33. "lint": "eslint .",
  34. "test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/",
  35. "test-ci": "nyc --reporter=text npm test",
  36. "test-cov": "nyc --reporter=html --reporter=text npm test"
  37. }
  38. }