package.json 548 B

123456789101112131415161718192021222324
  1. {
  2. "name": "cookie-signature",
  3. "version": "1.2.2",
  4. "main": "index.js",
  5. "description": "Sign and unsign cookies",
  6. "keywords": ["cookie", "sign", "unsign"],
  7. "author": "TJ Holowaychuk <tj@learnboost.com>",
  8. "license": "MIT",
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/visionmedia/node-cookie-signature.git"
  12. },
  13. "dependencies": {},
  14. "engines": {
  15. "node": ">=6.6.0"
  16. },
  17. "devDependencies": {
  18. "mocha": "*",
  19. "should": "*"
  20. },
  21. "scripts": {
  22. "test": "mocha --require should --reporter spec"
  23. }
  24. }