getcontributors
Advanced tools
Comparing version 2.17.0 to 2.18.0-next.1595345674.ad6d9f8288da9dc251a8bf60cd62e685ecd4f9a5
# History | ||
## v2.18.0 2020 July 22 | ||
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation) | ||
## v2.17.0 2020 June 25 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"title": "Get Contributors", | ||
"name": "getcontributors", | ||
"version": "2.17.0", | ||
"version": "2.18.0-next.1595345674.ad6d9f8288da9dc251a8bf60cd62e685ecd4f9a5", | ||
"description": "Fetch all the contributors from a github repository, github organisation, or github search", | ||
@@ -89,3 +89,3 @@ "homepage": "https://github.com/bevry/getcontributors", | ||
{ | ||
"description": "TypeScript compiled against ESNext for Node.js with Require for modules", | ||
"description": "TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules", | ||
"directory": "edition-esnext", | ||
@@ -115,7 +115,29 @@ "entry": "index.js", | ||
} | ||
}, | ||
{ | ||
"description": "TypeScript compiled against ESNext for Node.js with Import for modules", | ||
"directory": "edition-node-esm", | ||
"entry": "index.js", | ||
"tags": [ | ||
"javascript", | ||
"import" | ||
], | ||
"engines": { | ||
"node": true, | ||
"browsers": false | ||
} | ||
} | ||
], | ||
"types": "./compiled-types/", | ||
"type": "commonjs", | ||
"type": "module", | ||
"main": "edition-esnext/index.js", | ||
"exports": { | ||
"node": { | ||
"import": "./edition-node-esm/index.js", | ||
"require": "./edition-esnext/index.js" | ||
}, | ||
"browser": { | ||
"import": "./edition-browsers/index.js" | ||
} | ||
}, | ||
"browser": "edition-browsers/index.js", | ||
@@ -125,49 +147,50 @@ "module": "edition-browsers/index.js", | ||
"cross-fetch": "^3.0.5", | ||
"fellow": "6.15.0", | ||
"getrepos": "5.10.0", | ||
"githubauthreq": "5.11.0", | ||
"fellow": "^6.16.0", | ||
"getrepos": "^5.11.0", | ||
"githubauthreq": "^5.13.0", | ||
"simplytyped": "^3.3.0" | ||
}, | ||
"devDependencies": { | ||
"@bevry/update-contributors": "^1.12.0", | ||
"@typescript-eslint/eslint-plugin": "^3.4.0", | ||
"@typescript-eslint/parser": "^3.4.0", | ||
"assert-helpers": "^6.13.0", | ||
"eslint": "^7.3.1", | ||
"eslint-config-bevry": "^3.13.0", | ||
"@bevry/update-contributors": "^1.13.0", | ||
"@typescript-eslint/eslint-plugin": "^3.7.0", | ||
"@typescript-eslint/parser": "^3.7.0", | ||
"assert-helpers": "^6.17.0", | ||
"eslint": "^7.5.0", | ||
"eslint-config-bevry": "^3.16.0", | ||
"eslint-config-prettier": "^6.11.0", | ||
"eslint-plugin-prettier": "^3.1.4", | ||
"kava": "^5.7.0", | ||
"make-deno-edition": "^0.13.0", | ||
"kava": "^5.8.0", | ||
"make-deno-edition": "^0.14.0", | ||
"prettier": "^2.0.5", | ||
"projectz": "^2.10.1", | ||
"surge": "^0.21.3", | ||
"typedoc": "^0.17.7", | ||
"typescript": "^3.9.5", | ||
"valid-directory": "^2.5.0", | ||
"valid-module": "^1.7.0" | ||
"projectz": "^2.11.0", | ||
"surge": "^0.21.6", | ||
"typedoc": "^0.17.8", | ||
"typescript": "^3.9.7", | ||
"valid-directory": "^2.6.0", | ||
"valid-module": "^1.10.0" | ||
}, | ||
"scripts": { | ||
"our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next", | ||
"our:compile": "yarn run our:compile:deno && yarn run our:compile:edition-browsers && yarn run our:compile:edition-esnext && yarn run our:compile:types", | ||
"our:compile": "npm run our:compile:deno && npm run our:compile:edition-browsers && npm run our:compile:edition-esnext && npm run our:compile:edition-node-esm && npm run our:compile:types", | ||
"our:compile:deno": "make-deno-edition --attempt", | ||
"our:compile:edition-browsers": "tsc --module ESNext --target ES2019 --outDir ./edition-browsers --project tsconfig.json && ( test ! -d edition-browsers/source || ( mv edition-browsers/source edition-temp && rm -Rf edition-browsers && mv edition-temp edition-browsers ) )", | ||
"our:compile:edition-esnext": "tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) )", | ||
"our:compile:edition-esnext": "tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json", | ||
"our:compile:edition-node-esm": "tsc --module ESNext --target ESNext --outDir ./edition-node-esm --project tsconfig.json && ( test ! -d edition-node-esm/source || ( mv edition-node-esm/source edition-temp && rm -Rf edition-node-esm && mv edition-temp edition-node-esm ) ) && echo '{\"type\": \"module\"}' > edition-node-esm/package.json", | ||
"our:compile:types": "tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )", | ||
"our:deploy": "echo no need for this project", | ||
"our:meta": "yarn run our:meta:contributors && yarn run our:meta:docs && yarn run our:meta:projectz", | ||
"our:meta": "npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz", | ||
"our:meta:contributors": "update-contributors", | ||
"our:meta:docs": "yarn run our:meta:docs:typedoc", | ||
"our:meta:docs": "npm run our:meta:docs:typedoc", | ||
"our:meta:docs:typedoc": "rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source", | ||
"our:meta:projectz": "projectz compile", | ||
"our:release": "yarn run our:release:prepare && yarn run our:release:check-changelog && yarn run our:release:check-dirty && yarn run our:release:tag && yarn run our:release:push", | ||
"our:release": "npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push", | ||
"our:release:check-changelog": "cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)", | ||
"our:release:check-dirty": "git diff --exit-code", | ||
"our:release:prepare": "yarn run our:clean && yarn run our:compile && yarn run our:test && yarn run our:meta", | ||
"our:release:prepare": "npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta", | ||
"our:release:push": "git push origin master && git push origin --tags", | ||
"our:release:tag": "export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"", | ||
"our:setup": "yarn run our:setup:install", | ||
"our:setup:install": "/usr/local/bin/yarn install --ignore-engines", | ||
"our:test": "yarn run our:verify && yarn test", | ||
"our:verify": "yarn run our:verify:directory && yarn run our:verify:eslint && yarn run our:verify:module && yarn run our:verify:prettier", | ||
"our:setup": "npm run our:setup:install", | ||
"our:setup:install": "npm install", | ||
"our:test": "npm run our:verify && npm test", | ||
"our:verify": "npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:module && npm run our:verify:prettier", | ||
"our:verify:directory": "valid-directory", | ||
@@ -174,0 +197,0 @@ "our:verify:eslint": "eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source", |
@@ -55,3 +55,3 @@ <!-- TITLE/ --> | ||
<script type="module"> | ||
import * as pkg from '//cdn.pika.dev/getcontributors/^2.17.0' | ||
import * as pkg from '//cdn.pika.dev/getcontributors/^2.18.0' | ||
</script> | ||
@@ -64,3 +64,3 @@ ``` | ||
<script type="module"> | ||
import * as pkg from '//unpkg.com/getcontributors@^2.17.0' | ||
import * as pkg from '//unpkg.com/getcontributors@^2.18.0' | ||
</script> | ||
@@ -73,3 +73,3 @@ ``` | ||
<script type="module"> | ||
import * as pkg from '//dev.jspm.io/getcontributors@2.17.0' | ||
import * as pkg from '//dev.jspm.io/getcontributors@2.18.0' | ||
</script> | ||
@@ -84,4 +84,5 @@ ``` | ||
<li><code>getcontributors</code> aliases <code>getcontributors/edition-esnext/index.js</code></li> | ||
<li><code>getcontributors/edition-esnext/index.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li> | ||
<li><code>getcontributors/edition-browsers/index.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against <a href="https://en.wikipedia.org/wiki/ECMAScript#10th_Edition_-_ECMAScript_2019" title="ECMAScript ES2019">ES2019</a> for web browsers with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li></ul> | ||
<li><code>getcontributors/edition-esnext/index.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 10 || 12 || 13 || 14 with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li> | ||
<li><code>getcontributors/edition-browsers/index.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against <a href="https://en.wikipedia.org/wiki/ECMAScript#10th_Edition_-_ECMAScript_2019" title="ECMAScript ES2019">ES2019</a> for web browsers with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li> | ||
<li><code>getcontributors/edition-node-esm/index.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li></ul> | ||
@@ -88,0 +89,0 @@ <!-- /INSTALL --> |
@@ -9,5 +9,6 @@ { | ||
"strict": true, | ||
"target": "ESNext" | ||
"target": "ESNext", | ||
"module": "ESNext" | ||
}, | ||
"include": ["source"] | ||
} |
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
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
55531
13
790
154
Yes
1
6
+ Addededitions@6.21.0(transitive)
+ Addedfellow@6.25.0(transitive)
+ Addedgetrepos@5.17.0(transitive)
+ Addedgithubauthreq@5.19.0(transitive)
+ Addednative-promise-pool@3.28.0(transitive)
+ Addedversion-range@4.14.0(transitive)
- Removededitions@3.16.0(transitive)
- Removederrlop@3.17.0(transitive)
- Removedfellow@6.15.0(transitive)
- Removedgetrepos@5.10.0(transitive)
- Removedgithubauthreq@5.11.05.7.0(transitive)
- Removednative-promise-pool@3.6.0(transitive)
- Removedsemver@6.3.0(transitive)
Updatedfellow@^6.16.0
Updatedgetrepos@^5.11.0
Updatedgithubauthreq@^5.13.0