{ "_from": "aes-decrypter@3.0.0", "_id": "aes-decrypter@3.0.0", "_inBundle": false, "_integrity": "sha512-irJXaWFepN2+DTLSbwLb4BKPWoUCgMluPTMcLxocHGKwLh1OuJ+5KwImKUkwvVYc2lWemlOHIuObcALWywGxRQ==", "_location": "/aes-decrypter", "_phantomChildren": {}, "_requested": { "type": "version", "registry": true, "raw": "aes-decrypter@3.0.0", "name": "aes-decrypter", "escapedName": "aes-decrypter", "rawSpec": "3.0.0", "saveSpec": null, "fetchSpec": "3.0.0" }, "_requiredBy": [ "/@videojs/http-streaming" ], "_resolved": "https://registry.npmmirror.com/aes-decrypter/-/aes-decrypter-3.0.0.tgz", "_shasum": "7848a1c145b9fdbf57ae3e2b5b1bc7cf0644a8fb", "_spec": "aes-decrypter@3.0.0", "_where": "/data/jenkins/workspace/front-v5-web/node_modules/@videojs/http-streaming", "author": { "name": "Brightcove, Inc." }, "browserify-shim": { "qunit": "global:QUnit", "sinon": "global:sinon" }, "bugs": { "url": "https://github.com/videojs/aes-decrypter/issues" }, "bundleDependencies": false, "contributors": [ { "name": "gkatsev" }, { "name": "imbcmdth" }, { "name": "dmlap" }, { "name": "bcasey" } ], "dependencies": { "commander": "^2.9.0", "global": "^4.3.2", "pkcs7": "^1.0.2" }, "deprecated": false, "description": "decrypt aes-128 content using a key", "devDependencies": { "babel-cli": "^6.24.1", "babel-plugin-external-helpers": "^6.22.0", "babel-plugin-transform-object-assign": "^6.8.0", "babel-preset-es2015": "^6.14.0", "babel-preset-es3": "^1.0.1", "babelify": "^7.3.0", "bannerize": "^1.0.2", "bluebird": "^3.2.2", "browserify": "^12.0.2", "browserify-shim": "^3.8.12", "budo": "^8.0.4", "chg": "^0.3.2", "cli-table": "^0.3.1", "conventional-changelog-cli": "^1.3.1", "conventional-changelog-videojs": "^3.0.0", "doctoc": "^0.15.0", "filesize": "^3.5.10", "glob": "^6.0.3", "jsdoc": "^3.4.0", "karma": "^1.7.0", "karma-chrome-launcher": "^2.1.1", "karma-detect-browsers": "^2.2.5", "karma-firefox-launcher": "^1.0.1", "karma-ie-launcher": "^1.0.0", "karma-qunit": "^1.2.1", "karma-safari-launcher": "^1.0.0", "klaw-sync": "^2.1.0", "mkdirp": "^0.5.1", "node-static": "^0.7.9", "npm-run-all": "^4.0.2", "qunitjs": "^2.3.2", "rimraf": "^2.6.1", "rollup": "^0.41.6", "rollup-plugin-babel": "^2.7.1", "rollup-plugin-commonjs": "^8.0.2", "rollup-plugin-json": "^2.1.1", "rollup-plugin-multi-entry": "^2.0.1", "rollup-plugin-node-resolve": "^3.0.0", "rollup-watch": "^3.2.2", "semver": "^5.3.0", "sinon": "^2.2.0", "uglify-js": "^3.0.7", "videojs-standard": "^6.0.0" }, "directories": { "test": "test" }, "files": [ "CONTRIBUTING.md", "dist/", "docs/", "index.html", "scripts/", "src/", "test/" ], "generator-videojs-plugin": { "version": "5.0.0" }, "homepage": "https://github.com/videojs/aes-decrypter#readme", "license": "Apache-2.0", "main": "dist/aes-decrypter.cjs.js", "module": "dist/aes-decrypter.es.js", "name": "aes-decrypter", "repository": { "type": "git", "url": "git+https://github.com/videojs/aes-decrypter.git" }, "scripts": { "assets": "babel-node scripts/assets.js", "build": "npm-run-all -p build:*", "build:js": "npm-run-all build:js:rollup-modules build:js:rollup-umd build:js:bannerize build:js:uglify", "build:js:babel": "babel src -d es5", "build:js:bannerize": "bannerize dist/aes-decrypter.js --banner=scripts/banner.ejs", "build:js:browserify": "browserify . -s aes-decrypter -o dist/aes-decrypter.js", "build:js:rollup-modules": "rollup -c scripts/modules.rollup.config.js", "build:js:rollup-umd": "rollup -c scripts/umd.rollup.config.js", "build:js:uglify": "uglifyjs dist/aes-decrypter.js --comments --mangle --compress -o dist/aes-decrypter.min.js", "build:test": "rollup -c scripts/test.rollup.config.js", "change": "chg add", "clean": "rimraf dist test/dist", "docs": "npm-run-all docs:*", "docs:api": "jsdoc src -r -d docs/api", "docs:toc": "doctoc README.md", "lint": "vjsstandard", "postclean": "mkdirp dist test/dist", "prebuild": "npm run clean", "prepublish": "npm run build", "prestart": "npm run build", "pretest": "npm-run-all lint build", "preversion": "npm test", "start": "npm-run-all -p start:server watch", "start:server": "static -a 0.0.0.0 -p 9999 -H '{\"Cache-Control\": \"no-cache, must-revalidate\"}' .", "test": "karma start test/karma.conf.js", "test:chrome": "npm run pretest && karma start test/karma.conf.js --browsers Chrome", "test:firefox": "npm run pretest && karma start test/karma.conf.js --browsers Firefox", "test:ie": "npm run pretest && karma start test/karma.conf.js --browsers IE", "test:safari": "npm run pretest && karma start test/karma.conf.js --browsers Safari", "version": "node scripts/version.js", "watch": "npm-run-all -p watch:*", "watch:js-modules": "rollup -c scripts/modules.rollup.config.js -w", "watch:js-umd": "rollup -c scripts/umd.rollup.config.js -w", "watch:test": "rollup -c scripts/test.rollup.config.js -w" }, "version": "3.0.0", "vjsstandard": { "ignore": [ "dist", "docs", "test/dist", "test/karma.conf.js", "scripts", "src/aes.js" ] } }