package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "ssri",
  3. "version": "7.1.1",
  4. "description": "Standard Subresource Integrity library -- parses, serializes, generates, and verifies integrity metadata according to the SRI spec.",
  5. "main": "index.js",
  6. "files": [
  7. "*.js"
  8. ],
  9. "scripts": {
  10. "prerelease": "npm t",
  11. "postrelease": "npm publish && git push --follow-tags",
  12. "pretest": "standard",
  13. "release": "standard-version -s",
  14. "test": "tap -J --coverage test/*.js",
  15. "update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
  16. "update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
  17. },
  18. "repository": "https://github.com/npm/ssri",
  19. "keywords": [
  20. "w3c",
  21. "web",
  22. "security",
  23. "integrity",
  24. "checksum",
  25. "hashing",
  26. "subresource integrity",
  27. "sri",
  28. "sri hash",
  29. "sri string",
  30. "sri generator",
  31. "html"
  32. ],
  33. "author": {
  34. "name": "Kat Marchán",
  35. "email": "kzm@sykosomatic.org",
  36. "twitter": "maybekatz"
  37. },
  38. "license": "ISC",
  39. "dependencies": {
  40. "figgy-pudding": "^3.5.1",
  41. "minipass": "^3.1.1"
  42. },
  43. "devDependencies": {
  44. "standard": "^14.3.0",
  45. "standard-version": "^7.0.0",
  46. "tap": "^14.8.2",
  47. "weallbehave": "^1.2.0",
  48. "weallcontribute": "^1.0.8"
  49. },
  50. "tap": {
  51. "check-coverage": true
  52. },
  53. "engines": {
  54. "node": ">= 8"
  55. }
  56. }