package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "ssri",
  3. "version": "6.0.2",
  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/zkat/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. },
  42. "devDependencies": {
  43. "nyc": "^11.4.1",
  44. "standard": "^10.0.3",
  45. "standard-version": "^4.3.0",
  46. "tap": "^11.1.0",
  47. "weallbehave": "^1.2.0",
  48. "weallcontribute": "^1.0.8"
  49. },
  50. "config": {
  51. "nyc": {
  52. "exclude": [
  53. "node_modules/**",
  54. "test/**"
  55. ]
  56. }
  57. }
  58. }