package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "nocache",
  3. "author": "Adam Baldwin <adam@npmjs.com> (https://evilpacket.net)",
  4. "contributors": [
  5. "Evan Hahn <me@evanhahn.com> (https://evanhahn.com)"
  6. ],
  7. "description": "Middleware to destroy caching",
  8. "version": "2.1.0",
  9. "license": "MIT",
  10. "keywords": [
  11. "helmet",
  12. "security",
  13. "express",
  14. "connect",
  15. "nocache",
  16. "caching",
  17. "cache"
  18. ],
  19. "homepage": "https://helmetjs.github.io/docs/nocache/",
  20. "repository": {
  21. "type": "git",
  22. "url": "git://github.com/helmetjs/nocache.git"
  23. },
  24. "bugs": {
  25. "url": "https://github.com/helmetjs/nocache/issues",
  26. "email": "me@evanhahn.com"
  27. },
  28. "engines": {
  29. "node": ">=4.0.0"
  30. },
  31. "main": "./dist/index.js",
  32. "typings": "./dist/index.d.ts",
  33. "files": [
  34. "CHANGELOG.md",
  35. "LICENSE",
  36. "README.md",
  37. "dist/index.js",
  38. "dist/index.d.ts"
  39. ],
  40. "scripts": {
  41. "pretest": "npm run lint",
  42. "prepublishOnly": "npm run build",
  43. "lint": "eslint --fix '**/*.ts'",
  44. "test": "jest --config test/jest-config.json",
  45. "clean": "rm -rf dist",
  46. "build": "npm run clean && tsc"
  47. },
  48. "devDependencies": {
  49. "@types/connect": "^3.4.32",
  50. "@types/jest": "^24.0.12",
  51. "@types/supertest": "^2.0.7",
  52. "@typescript-eslint/eslint-plugin": "^1.7.0",
  53. "@typescript-eslint/parser": "^1.7.0",
  54. "connect": "^3.6.6",
  55. "eslint": "^5.16.0",
  56. "eslint-config-helmet": "^0.2.0",
  57. "jest": "^24.8.0",
  58. "supertest": "^4.0.2",
  59. "ts-jest": "^24.0.2",
  60. "typescript": "^3.4.5"
  61. }
  62. }