dispensary
Advanced tools
Comparing version 0.45.0 to 0.47.0
# Community Participation Guidelines | ||
This repository is governed by Mozilla's code of conduct and etiquette guidelines. | ||
For more details, please read the | ||
[Mozilla Community Participation Guidelines](https://www.mozilla.org/about/governance/policies/participation/). | ||
This repository is governed by Mozilla's code of conduct and etiquette guidelines. For more details, please read the [Mozilla Community Participation Guidelines](https://www.mozilla.org/about/governance/policies/participation/). | ||
## How to Report | ||
For more information on how to report violations of the Community Participation Guidelines, please read our '[How to Report](https://www.mozilla.org/about/governance/policies/participation/reporting/)' page. | ||
@@ -9,0 +8,0 @@ |
{ | ||
"name": "dispensary", | ||
"version": "0.45.0", | ||
"version": "0.47.0", | ||
"description": "SHA-256 Hashes of popular JS libraries, used by Mozilla's Add-ons Linter", | ||
@@ -13,9 +13,14 @@ "main": "dist/dispensary.js", | ||
"scripts": { | ||
"update": "npm run build && ./bin/dispensary > src/hashes.txt", | ||
"start": "grunt start", | ||
"build": "grunt build", | ||
"test": "LANG='en_US.UTF-8' grunt test", | ||
"prepublish": "npm test && npm run build", | ||
"snyk-protect": "snyk protect", | ||
"prepare": "npm run snyk-protect" | ||
"build": "npm run clean && webpack", | ||
"clean": "rimraf /dist /coverage", | ||
"eslint": "eslint .", | ||
"prepublishOnly": "npm run test-ci", | ||
"prettier": "pretty-quick --branch master", | ||
"prettier-ci": "prettier -c '**'", | ||
"prettier-full": "prettier --write '**'", | ||
"start": "webpack --watch", | ||
"test": "npm run build && jest tests/ --watch", | ||
"test-coverage": "npm run build && jest tests/ --coverage && codecov", | ||
"test-ci": "npm run test-coverage && npm run eslint && npm run prettier-ci", | ||
"update": "npm run build && ./bin/dispensary > src/hashes.txt" | ||
}, | ||
@@ -33,25 +38,25 @@ "repository": { | ||
"devDependencies": { | ||
"@babel/core": "~7.6.0", | ||
"@babel/plugin-proposal-class-properties": "~7.5.0", | ||
"@babel/plugin-transform-modules-commonjs": "~7.6.0", | ||
"@babel/preset-env": "~7.6.0", | ||
"@babel/core": "~7.7.0", | ||
"@babel/plugin-proposal-class-properties": "~7.7.0", | ||
"@babel/plugin-transform-modules-commonjs": "~7.7.0", | ||
"@babel/preset-env": "~7.7.0", | ||
"babel-eslint": "~10.0.3", | ||
"babel-loader": "~8.0.0", | ||
"chai": "~4.2.0", | ||
"codecov": "3.6.1", | ||
"eslint": "~6.6.0", | ||
"grunt": "~1.0.3", | ||
"grunt-contrib-clean": "~2.0.0", | ||
"grunt-contrib-copy": "~1.0.0", | ||
"grunt-contrib-watch": "~1.1.0", | ||
"grunt-eslint": "~22.0.0", | ||
"grunt-gh-pages": "~3.1.0", | ||
"grunt-jscs": "~3.0.1", | ||
"grunt-mocha-test": "~0.13.3", | ||
"grunt-webpack": "~3.1.3", | ||
"load-grunt-configs": "~1.0.0", | ||
"load-grunt-tasks": "~5.1.0", | ||
"mocha": "~6.2.0", | ||
"eslint-config-amo": "1.28.0", | ||
"eslint-config-prettier": "6.6.0", | ||
"eslint-plugin-async-await": "0.0.0", | ||
"eslint-plugin-jest": "23.0.4", | ||
"eslint-plugin-prettier": "3.1.1", | ||
"eslint-plugin-promise": "4.2.1", | ||
"jest": "24.9.0", | ||
"jest-raw-loader": "1.0.1", | ||
"prettier": "1.19.1", | ||
"pretty-quick": "2.0.1", | ||
"raw-loader": "~3.1.0", | ||
"rimraf": "3.0.0", | ||
"sinon": "~7.5.0", | ||
"webpack": "~4.41.0" | ||
"webpack": "~4.41.0", | ||
"webpack-cli": "^3.3.10" | ||
}, | ||
@@ -65,6 +70,4 @@ "dependencies": { | ||
"source-map-support": "~0.5.4", | ||
"yargs": "~14.2.0", | ||
"snyk": "^1.230.5" | ||
}, | ||
"snyk": true | ||
"yargs": "~15.0.0" | ||
} | ||
} |
@@ -1,7 +0,2 @@ | ||
[![Build Status](https://travis-ci.org/mozilla/dispensary.svg?branch=master)](https://travis-ci.org/mozilla/dispensary) | ||
[![Coverage Status](https://coveralls.io/repos/github/mozilla/dispensary/badge.svg?branch=master)](https://coveralls.io/github/mozilla/dispensary?branch=master) | ||
[![Dependency Status](https://david-dm.org/mozilla/dispensary.svg)](https://david-dm.org/mozilla/dispensary) | ||
[![devDependency Status](https://david-dm.org/mozilla/dispensary/dev-status.svg)](https://david-dm.org/mozilla/dispensary#info=devDependencies) | ||
[![npm version](https://badge.fury.io/js/dispensary.svg)](https://badge.fury.io/js/dispensary) | ||
[![Greenkeeper badge](https://badges.greenkeeper.io/mozilla/dispensary.svg)](https://greenkeeper.io/) | ||
[![Build Status](https://travis-ci.org/mozilla/dispensary.svg?branch=master)](https://travis-ci.org/mozilla/dispensary) [![codecov](https://codecov.io/gh/mozilla/dispensary/branch/master/graph/badge.svg)](https://codecov.io/gh/mozilla/dispensary) [![Dependency Status](https://david-dm.org/mozilla/dispensary.svg)](https://david-dm.org/mozilla/dispensary) [![devDependency Status](https://david-dm.org/mozilla/dispensary/dev-status.svg)](https://david-dm.org/mozilla/dispensary#info=devDependencies) [![npm version](https://badge.fury.io/js/dispensary.svg)](https://badge.fury.io/js/dispensary) | ||
@@ -8,0 +3,0 @@ # Dispensary 🌿 |
{ | ||
"timezone": "UTC", | ||
"extends": [ | ||
"config:base", | ||
":maintainLockFilesWeekly", | ||
":prNotPending" | ||
], | ||
"extends": ["config:base", ":maintainLockFilesWeekly", ":prNotPending"], | ||
"lockFileMaintenance": { | ||
@@ -14,5 +10,3 @@ "enabled": true, | ||
{ | ||
"packagePatterns": [ | ||
"*" | ||
], | ||
"packagePatterns": ["*"], | ||
"rangeStrategy": "replace" | ||
@@ -19,0 +13,0 @@ } |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
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
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed 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
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed 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
7
13
2
3
249548
440
6
+ Addedansi-regex@5.0.1(transitive)
+ Addedansi-styles@4.3.0(transitive)
+ Addedcliui@6.0.0(transitive)
+ Addedcolor-convert@2.0.1(transitive)
+ Addedcolor-name@1.1.4(transitive)
+ Addedemoji-regex@8.0.0(transitive)
+ Addedfind-up@4.1.0(transitive)
+ Addedis-fullwidth-code-point@3.0.0(transitive)
+ Addedlocate-path@5.0.0(transitive)
+ Addedp-locate@4.1.0(transitive)
+ Addedpath-exists@4.0.0(transitive)
+ Addedstring-width@4.2.3(transitive)
+ Addedstrip-ansi@6.0.1(transitive)
+ Addedwrap-ansi@6.2.0(transitive)
+ Addedyargs@15.0.2(transitive)
+ Addedyargs-parser@16.1.0(transitive)
- Removedsnyk@^1.230.5
- Removed@sentry-internal/tracing@7.120.2(transitive)
- Removed@sentry/core@7.120.2(transitive)
- Removed@sentry/integrations@7.120.2(transitive)
- Removed@sentry/node@7.120.2(transitive)
- Removed@sentry/types@7.120.2(transitive)
- Removed@sentry/utils@7.120.2(transitive)
- Removedansi-regex@4.1.1(transitive)
- Removedansi-styles@3.2.1(transitive)
- Removedboolean@3.2.0(transitive)
- Removedcliui@5.0.0(transitive)
- Removedcolor-convert@1.9.3(transitive)
- Removedcolor-name@1.1.3(transitive)
- Removeddefine-data-property@1.1.4(transitive)
- Removeddefine-properties@1.2.1(transitive)
- Removeddetect-node@2.1.0(transitive)
- Removedemoji-regex@7.0.3(transitive)
- Removedes-define-property@1.0.1(transitive)
- Removedes-errors@1.3.0(transitive)
- Removedes6-error@4.1.1(transitive)
- Removedescape-string-regexp@4.0.0(transitive)
- Removedfind-up@3.0.0(transitive)
- Removedglobal-agent@3.0.0(transitive)
- Removedglobalthis@1.0.4(transitive)
- Removedgopd@1.2.0(transitive)
- Removedhas-property-descriptors@1.0.2(transitive)
- Removedimmediate@3.0.6(transitive)
- Removedis-fullwidth-code-point@2.0.0(transitive)
- Removedlie@3.1.1(transitive)
- Removedlocalforage@1.10.0(transitive)
- Removedlocate-path@3.0.0(transitive)
- Removedmatcher@3.0.0(transitive)
- Removedobject-keys@1.1.1(transitive)
- Removedp-locate@3.0.0(transitive)
- Removedpath-exists@3.0.0(transitive)
- Removedroarr@2.15.4(transitive)
- Removedsemver@7.6.3(transitive)
- Removedsemver-compare@1.0.0(transitive)
- Removedserialize-error@7.0.1(transitive)
- Removedsnyk@1.1294.3(transitive)
- Removedsprintf-js@1.1.3(transitive)
- Removedstring-width@3.1.0(transitive)
- Removedstrip-ansi@5.2.0(transitive)
- Removedtype-fest@0.13.1(transitive)
- Removedwrap-ansi@5.1.0(transitive)
- Removedyargs@14.2.3(transitive)
- Removedyargs-parser@15.0.3(transitive)
Updatedyargs@~15.0.0