vue-youtube
Advanced tools
Comparing version 1.0.0 to 1.0.1
144
package.json
{ | ||
"name": "vue-youtube", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"version": "1.0.1", | ||
"description": "A Vue.js Plugin", | ||
"author": "Antério Vieira <anteriovieira@gmail.com>>", | ||
"main": "dist/vue-youtube.common.js", | ||
"module": "dist/vue-youtube.esm.js", | ||
"browser": "dist/vue-youtube.js", | ||
"unpkg": "dist/vue-youtube.js", | ||
"style": "dist/vue-youtube.css", | ||
"files": [ | ||
"dist", | ||
"src" | ||
], | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
"clean": "rimraf dist", | ||
"build": "node build/build.js", | ||
"build:dll": "webpack --progress --config build/webpack.config.dll.js", | ||
"lint": "yon run lint:js && yon run lint:css", | ||
"lint:js": "eslint --ext js --ext jsx --ext vue src test/**/*.spec.js test/*.js build", | ||
"lint:js:fix": "yon run lint:js -- --fix", | ||
"lint:css": "stylelint src/**/*.{vue,css}", | ||
"lint:staged": "lint-staged", | ||
"pretest": "yon run lint", | ||
"test": "cross-env BABEL_ENV=test karma start test/karma.conf.js --single-run", | ||
"dev": "webpack-dashboard -- webpack-dev-server --config build/webpack.config.dev.js --open", | ||
"dev:coverage": "cross-env BABEL_ENV=test karma start test/karma.conf.js", | ||
"prepublish": "yon run build" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC" | ||
"lint-staged": { | ||
"*.{vue,jsx,js}": [ | ||
"eslint --fix" | ||
], | ||
"*.{vue,css}": [ | ||
"stylefmt", | ||
"stylelint" | ||
] | ||
}, | ||
"pre-commit": "lint:staged", | ||
"devDependencies": { | ||
"buble": "^0.15.2", | ||
"clean-css": "^4.0.0", | ||
"mkdirp": "^0.5.1", | ||
"rollup": "^0.41.6", | ||
"rollup-plugin-buble": "^0.15.0", | ||
"rollup-plugin-commonjs": "^8.0.0", | ||
"rollup-plugin-jsx": "^1.0.0", | ||
"rollup-plugin-node-resolve": "^3.0.0", | ||
"rollup-plugin-postcss": "^0.4.1", | ||
"rollup-plugin-replace": "^1.1.0", | ||
"rollup-plugin-vue": "^2.3.0", | ||
"uglify-js": "^3.0.0", | ||
"add-asset-html-webpack-plugin": "^2.0.0", | ||
"babel-core": "^6.24.0", | ||
"babel-eslint": "^7.2.0", | ||
"babel-helper-vue-jsx-merge-props": "^2.0.0", | ||
"babel-loader": "^7.0.0", | ||
"babel-plugin-istanbul": "^4.1.0", | ||
"babel-plugin-syntax-jsx": "^6.18.0", | ||
"babel-plugin-transform-object-rest-spread": "^6.23.0", | ||
"babel-plugin-transform-runtime": "^6.23.0", | ||
"babel-plugin-transform-vue-jsx": "^3.4.0", | ||
"babel-preset-env": "^1.4.0", | ||
"chai": "^3.5.0", | ||
"chai-dom": "^1.4.0", | ||
"cross-env": "^4.0.0", | ||
"css-loader": "^0.28.0", | ||
"eslint": "^3.19.0", | ||
"eslint-config-vue": "^2.0.0", | ||
"eslint-plugin-vue": "^2.0.0", | ||
"extract-text-webpack-plugin": "^2.1.0", | ||
"html-webpack-plugin": "^2.28.0", | ||
"karma": "^1.7.0", | ||
"karma-chai-dom": "^1.1.0", | ||
"karma-chrome-launcher": "^2.1.0", | ||
"karma-coverage": "^1.1.0", | ||
"karma-mocha": "^1.3.0", | ||
"karma-sinon-chai": "^1.3.0", | ||
"karma-sourcemap-loader": "^0.3.7", | ||
"karma-spec-reporter": "^0.0.31", | ||
"karma-webpack": "^2.0.0", | ||
"lint-staged": "^3.4.0", | ||
"mocha": "^3.3.0", | ||
"mocha-css": "^1.0.1", | ||
"postcss": "^6.0.0", | ||
"postcss-cssnext": "^2.10.0", | ||
"pre-commit": "^1.2.0", | ||
"rimraf": "^2.6.0", | ||
"sinon": "2.2.0", | ||
"sinon-chai": "^2.10.0", | ||
"style-loader": "^0.17.0", | ||
"stylefmt": "^5.3.0", | ||
"stylelint": "^7.10.0", | ||
"stylelint-config-standard": "^16.0.0", | ||
"stylelint-processor-html": "^1.0.0", | ||
"uppercamelcase": "^3.0.0", | ||
"vue": "^2.3.0", | ||
"vue-loader": "^12.0.0", | ||
"vue-template-compiler": "^2.3.0", | ||
"webpack": "^2.5.0", | ||
"webpack-bundle-analyzer": "^2.4.0", | ||
"webpack-dashboard": "^0.4.0", | ||
"webpack-dev-server": "^2.4.0", | ||
"webpack-merge": "^4.0.0", | ||
"yarn-or-npm": "^2.0.0" | ||
}, | ||
"peerDependencies": { | ||
"vue": "^2.3.0" | ||
}, | ||
"dllPlugin": { | ||
"name": "vuePluginTemplateDeps", | ||
"include": [ | ||
"mocha/mocha.js", | ||
"style-loader!css-loader!mocha-css", | ||
"html-entities", | ||
"vue/dist/vue.js", | ||
"chai", | ||
"core-js/library", | ||
"url", | ||
"sockjs-client", | ||
"vue-style-loader/lib/addStylesClient.js", | ||
"events", | ||
"ansi-html", | ||
"style-loader/addStyles.js" | ||
] | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/anteriovieira/vue-youtube.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/anteriovieira/vue-youtube/issues" | ||
}, | ||
"homepage": "https://github.com/anteriovieira/vue-youtube#readme", | ||
"license": { | ||
"type": "MIT", | ||
"url": "http://www.opensource.org/licenses/mit-license.php" | ||
}, | ||
"dependencies": { | ||
"uniqid": "^4.1.1" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Empty package
Supply chain riskPackage does not contain any code. It may be removed, is name squatting, or the result of a faulty package publish.
Found 1 instance in 1 package
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
No contributors or author data
MaintenancePackage does not specify a list of contributors or an author in package.json.
Found 1 instance in 1 package
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
No tests
QualityPackage does not have any tests. This is a strong signal of a poorly maintained or low quality package.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
44215
11
1009
1
1
0
80
0
2
65
5
+ Addeduniqid@^4.1.1
+ Added@babel/helper-string-parser@7.25.9(transitive)
+ Added@babel/helper-validator-identifier@7.25.9(transitive)
+ Added@babel/parser@7.26.2(transitive)
+ Added@babel/types@7.26.0(transitive)
+ Added@vue/compiler-sfc@2.7.16(transitive)
+ Addedcsstype@3.1.3(transitive)
+ Addedmacaddress@0.2.9(transitive)
+ Addednanoid@3.3.7(transitive)
+ Addedpicocolors@1.1.1(transitive)
+ Addedpostcss@8.4.49(transitive)
+ Addedprettier@2.8.8(transitive)
+ Addedsource-map@0.6.1(transitive)
+ Addedsource-map-js@1.2.1(transitive)
+ Addeduniqid@4.1.1(transitive)
+ Addedvue@2.7.16(transitive)