package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "author": {
  3. "name": "Jeremy Stashewsky",
  4. "email": "jstash@gmail.com",
  5. "website": "https://github.com/stash"
  6. },
  7. "contributors": [
  8. {
  9. "name": "Alexander Savin",
  10. "website": "https://github.com/apsavin"
  11. },
  12. {
  13. "name": "Ian Livingstone",
  14. "website": "https://github.com/ianlivingstone"
  15. },
  16. {
  17. "name": "Ivan Nikulin",
  18. "website": "https://github.com/inikulin"
  19. },
  20. {
  21. "name": "Lalit Kapoor",
  22. "website": "https://github.com/lalitkapoor"
  23. },
  24. {
  25. "name": "Sam Thompson",
  26. "website": "https://github.com/sambthompson"
  27. },
  28. {
  29. "name": "Sebastian Mayr",
  30. "website": "https://github.com/Sebmaster"
  31. }
  32. ],
  33. "license": "BSD-3-Clause",
  34. "name": "tough-cookie",
  35. "description": "RFC6265 Cookies and Cookie Jar for node.js",
  36. "keywords": [
  37. "HTTP",
  38. "cookie",
  39. "cookies",
  40. "set-cookie",
  41. "cookiejar",
  42. "jar",
  43. "RFC6265",
  44. "RFC2965"
  45. ],
  46. "version": "2.4.3",
  47. "homepage": "https://github.com/salesforce/tough-cookie",
  48. "repository": {
  49. "type": "git",
  50. "url": "git://github.com/salesforce/tough-cookie.git"
  51. },
  52. "bugs": {
  53. "url": "https://github.com/salesforce/tough-cookie/issues"
  54. },
  55. "main": "./lib/cookie",
  56. "files": [
  57. "lib"
  58. ],
  59. "scripts": {
  60. "test": "vows test/*_test.js",
  61. "cover": "nyc --reporter=lcov --reporter=html vows test/*_test.js"
  62. },
  63. "engines": {
  64. "node": ">=0.8"
  65. },
  66. "devDependencies": {
  67. "async": "^1.4.2",
  68. "nyc": "^11.6.0",
  69. "string.prototype.repeat": "^0.2.0",
  70. "vows": "^0.8.1"
  71. },
  72. "dependencies": {
  73. "psl": "^1.1.24",
  74. "punycode": "^1.4.1"
  75. }
  76. }