package.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {
  2. "name": "aes-decrypter",
  3. "version": "4.0.1",
  4. "description": "decrypt aes-128 content using a key",
  5. "main": "dist/aes-decrypter.cjs.js",
  6. "module": "dist/aes-decrypter.es.js",
  7. "contributors": [
  8. "gkatsev",
  9. "imbcmdth",
  10. "dmlap",
  11. "bcasey"
  12. ],
  13. "scripts": {
  14. "build-test": "cross-env-shell TEST_BUNDLE_ONLY=1 'npm run build'",
  15. "build-prod": "cross-env-shell NO_TEST_BUNDLE=1 'npm run build'",
  16. "build": "npm-run-all -s clean -p build:*",
  17. "build:js": "rollup -c scripts/rollup.config.js",
  18. "clean": "shx rm -rf ./dist ./test/dist && shx mkdir -p ./dist ./test/dist",
  19. "lint": "vjsstandard",
  20. "prepublishOnly": "npm-run-all build-prod && vjsverify --verbose --skip-es-check",
  21. "start": "npm-run-all -p server watch",
  22. "server": "karma start scripts/karma.conf.js --singleRun=false --auto-watch",
  23. "test": "npm-run-all lint build-test && karma start scripts/karma.conf.js",
  24. "posttest": "shx cat test/dist/coverage/text.txt",
  25. "preversion": "npm test",
  26. "version": "is-prerelease || npm run update-changelog && git add CHANGELOG.md",
  27. "update-changelog": "conventional-changelog -p videojs -i CHANGELOG.md -s",
  28. "watch": "npm-run-all -p watch:*",
  29. "watch:js": "npm run build:js -- -w"
  30. },
  31. "author": "Brightcove, Inc.",
  32. "license": "Apache-2.0",
  33. "vjsstandard": {
  34. "ignore": [
  35. "dist",
  36. "docs",
  37. "test/dist"
  38. ]
  39. },
  40. "files": [
  41. "CONTRIBUTING.md",
  42. "dist/",
  43. "docs/",
  44. "index.html",
  45. "scripts/",
  46. "src/",
  47. "test/"
  48. ],
  49. "dependencies": {
  50. "@babel/runtime": "^7.12.5",
  51. "@videojs/vhs-utils": "^3.0.5",
  52. "global": "^4.4.0",
  53. "pkcs7": "^1.0.4"
  54. },
  55. "devDependencies": {
  56. "@rollup/plugin-replace": "^2.3.4",
  57. "@videojs/generator-helpers": "~2.0.1",
  58. "karma": "^5.2.3",
  59. "rollup": "^2.38.0",
  60. "sinon": "^9.2.3",
  61. "videojs-generate-karma-config": "^8.0.1",
  62. "videojs-generate-rollup-config": "~7.0.0",
  63. "videojs-generator-verify": "~3.0.1",
  64. "videojs-standard": "^8.0.4"
  65. },
  66. "generator-videojs-plugin": {
  67. "version": "7.7.3"
  68. },
  69. "directories": {
  70. "test": "test"
  71. },
  72. "repository": {
  73. "type": "git",
  74. "url": "git+https://github.com/videojs/aes-decrypter.git"
  75. },
  76. "bugs": {
  77. "url": "https://github.com/videojs/aes-decrypter/issues"
  78. },
  79. "homepage": "https://github.com/videojs/aes-decrypter#readme",
  80. "keywords": [
  81. "videojs",
  82. "videojs-plugin"
  83. ],
  84. "husky": {
  85. "hooks": {
  86. "pre-commit": "lint-staged"
  87. }
  88. },
  89. "lint-staged": {
  90. "*.js": "vjsstandard --fix",
  91. "README.md": "doctoc --notitle"
  92. }
  93. }