@bevry/github-orgs
Advanced tools
Comparing version 3.2.0 to 3.3.0-next.1701240272.9f03de357602fe4ad149a11ef839ff7a29161c72
{ | ||
"name": "@bevry/github-orgs", | ||
"version": "3.2.0", | ||
"version": "3.3.0-next.1701240272.9f03de357602fe4ad149a11ef839ff7a29161c72", | ||
"description": "JSON listing of all the Bevry managed GitHub organisations", | ||
@@ -14,2 +14,3 @@ "homepage": "https://github.com/bevry/github-orgs", | ||
"denoland", | ||
"es2022", | ||
"es5", | ||
@@ -113,3 +114,18 @@ "export-default", | ||
{ | ||
"description": "TypeScript compiled against ES5 for Node.js with Require for modules", | ||
"description": "TypeScript compiled against ES2022 for Node.js 21 with Require for modules", | ||
"directory": "edition-es2022", | ||
"entry": "index.js", | ||
"tags": [ | ||
"compiled", | ||
"javascript", | ||
"es2022", | ||
"require" | ||
], | ||
"engines": { | ||
"node": "6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21", | ||
"browsers": false | ||
} | ||
}, | ||
{ | ||
"description": "TypeScript compiled against ES5 for Node.js 4 with Require for modules", | ||
"directory": "edition-es5", | ||
@@ -129,4 +145,4 @@ "entry": "index.js", | ||
{ | ||
"description": "TypeScript compiled against ES5 for Node.js with Import for modules", | ||
"directory": "edition-es5-esm", | ||
"description": "TypeScript compiled against ES2022 for Node.js 21 with Import for modules", | ||
"directory": "edition-es2022-esm", | ||
"entry": "index.js", | ||
@@ -136,3 +152,3 @@ "tags": [ | ||
"javascript", | ||
"es5", | ||
"es2022", | ||
"import" | ||
@@ -173,8 +189,9 @@ ], | ||
"type": "module", | ||
"main": "edition-es5/index.js", | ||
"main": "index.cjs", | ||
"exports": { | ||
"node": { | ||
"types": "./edition-types/index.d.ts", | ||
"import": "./edition-es5-esm/index.js", | ||
"require": "./edition-es5/index.js" | ||
"import": "./edition-es2022-esm/index.js", | ||
"default": "./index.cjs", | ||
"require": "./edition-es2022/index.js" | ||
}, | ||
@@ -189,2 +206,5 @@ "browser": { | ||
"module": "edition-browsers/index.js", | ||
"dependencies": { | ||
"editions": "^6.16.0" | ||
}, | ||
"devDependencies": { | ||
@@ -194,4 +214,4 @@ "@bevry/fs-write": "^1.3.0", | ||
"@types/node": "^20.10.0", | ||
"@typescript-eslint/eslint-plugin": "^6.12.0", | ||
"@typescript-eslint/parser": "^6.12.0", | ||
"@typescript-eslint/eslint-plugin": "^6.13.1", | ||
"@typescript-eslint/parser": "^6.13.1", | ||
"assert-helpers": "^11.6.0", | ||
@@ -203,21 +223,21 @@ "eslint": "^8.54.0", | ||
"filedirname": "^3.1.0", | ||
"kava": "^7.3.0", | ||
"kava": "^7.4.0", | ||
"make-deno-edition": "^2.0.0", | ||
"prettier": "^3.1.0", | ||
"projectz": "^3.3.0", | ||
"promise-errback": "^1.0.0", | ||
"surge": "^0.23.1", | ||
"textextensions": "^6.6.0", | ||
"typedoc": "^0.25.3", | ||
"typescript": "5.2.2", | ||
"valid-directory": "^4.5.0", | ||
"valid-module": "^2.5.0" | ||
"projectz": "^3.4.0", | ||
"promise-errback": "^1.1.0", | ||
"textextensions": "^6.8.0", | ||
"typedoc": "^0.25.4", | ||
"typescript": "5.3.2", | ||
"valid-directory": "^4.6.0", | ||
"valid-module": "^2.6.0" | ||
}, | ||
"scripts": { | ||
"our:clean": "rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next", | ||
"our:compile": "npm run our:compile:deno && npm run our:compile:edition-browsers && npm run our:compile:edition-es5 && npm run our:compile:edition-es5-esm && npm run our:compile:edition-types", | ||
"our:compile": "npm run our:compile:deno && npm run our:compile:edition-browsers && npm run our:compile:edition-es2022 && npm run our:compile:edition-es2022-esm && npm run our:compile:edition-es5 && npm run our:compile:edition-types", | ||
"our:compile:deno": "make-deno-edition --attempt", | ||
"our:compile:edition-browsers": "tsc --module ESNext --target ES2022 --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-es2022": "tsc --module commonjs --target ES2022 --outDir ./edition-es2022 --project tsconfig.json && ( test ! -d edition-es2022/source || ( mv edition-es2022/source edition-temp && rm -rf edition-es2022 && mv edition-temp edition-es2022 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es2022/package.json", | ||
"our:compile:edition-es2022-esm": "tsc --module ESNext --target ES2022 --outDir ./edition-es2022-esm --project tsconfig.json && ( test ! -d edition-es2022-esm/source || ( mv edition-es2022-esm/source edition-temp && rm -rf edition-es2022-esm && mv edition-temp edition-es2022-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es2022-esm/package.json", | ||
"our:compile:edition-es5": "tsc --module commonjs --target ES5 --outDir ./edition-es5 --project tsconfig.json && ( test ! -d edition-es5/source || ( mv edition-es5/source edition-temp && rm -rf edition-es5 && mv edition-temp edition-es5 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es5/package.json", | ||
"our:compile:edition-es5-esm": "tsc --module ESNext --target ES5 --outDir ./edition-es5-esm --project tsconfig.json && ( test ! -d edition-es5-esm/source || ( mv edition-es5-esm/source edition-temp && rm -rf edition-es5-esm && mv edition-temp edition-es5-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es5-esm/package.json", | ||
"our:compile:edition-types": "tsc --emitDeclarationOnly --declaration --declarationMap --declarationDir ./edition-types --project tsconfig.json && ( test ! -d edition-types/source || ( mv edition-types/source edition-temp && rm -rf edition-types && mv edition-temp edition-types ) )", | ||
@@ -244,3 +264,3 @@ "our:deploy": "printf '%s\n' 'no need for this project'", | ||
"our:verify:prettier": "prettier --write .", | ||
"test": "node ./edition-es5/test.js" | ||
"test": "node ./test.cjs" | ||
}, | ||
@@ -256,9 +276,3 @@ "eslintConfig": { | ||
"trailingComma": "es5" | ||
}, | ||
"boundation": { | ||
"compiler": "typescript", | ||
"targets": [ | ||
"ES5" | ||
] | ||
} | ||
} | ||
} |
@@ -70,3 +70,3 @@ <!-- TITLE/ --> | ||
``` typescript | ||
import pkg from 'https://unpkg.com/@bevry/github-orgs@^3.2.0/edition-deno/index.ts' | ||
import pkg from 'https://unpkg.com/@bevry/github-orgs@^3.3.0/edition-deno/index.ts' | ||
``` | ||
@@ -78,3 +78,3 @@ | ||
<script type="module"> | ||
import pkg from '//cdn.skypack.dev/@bevry/github-orgs@^3.2.0' | ||
import pkg from '//cdn.skypack.dev/@bevry/github-orgs@^3.3.0' | ||
</script> | ||
@@ -87,3 +87,3 @@ ``` | ||
<script type="module"> | ||
import pkg from '//unpkg.com/@bevry/github-orgs@^3.2.0' | ||
import pkg from '//unpkg.com/@bevry/github-orgs@^3.3.0' | ||
</script> | ||
@@ -96,3 +96,3 @@ ``` | ||
<script type="module"> | ||
import pkg from '//dev.jspm.io/@bevry/github-orgs@3.2.0' | ||
import pkg from '//dev.jspm.io/@bevry/github-orgs@3.3.0' | ||
</script> | ||
@@ -105,7 +105,8 @@ ``` | ||
<ul><li><code>@bevry/github-orgs/source/index.ts</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> source code with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li> | ||
<ul><li><code>@bevry/github-orgs</code> aliases <code>@bevry/github-orgs/index.cjs</code> which uses the <a href="https://github.com/bevry/editions" title="You can use the Editions Autoloader to autoload the appropriate edition for your consumers environment">Editions Autoloader</a> to automatically select the correct edition for the consumer's environment</li> | ||
<li><code>@bevry/github-orgs/source/index.ts</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> source code with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li> | ||
<li><code>@bevry/github-orgs/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 ES2022 for web browsers with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li> | ||
<li><code>@bevry/github-orgs</code> aliases <code>@bevry/github-orgs/edition-es5/index.js</code></li> | ||
<li><code>@bevry/github-orgs/edition-es5/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 ES5 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>@bevry/github-orgs/edition-es5-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 ES5 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> | ||
<li><code>@bevry/github-orgs/edition-es2022/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 ES2022 for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 21 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>@bevry/github-orgs/edition-es5/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 ES5 for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 4 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>@bevry/github-orgs/edition-es2022-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 ES2022 for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 21 with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li> | ||
<li><code>@bevry/github-orgs/edition-types/index.d.ts</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled Types with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li> | ||
@@ -112,0 +113,0 @@ <li><code>@bevry/github-orgs/edition-deno/index.ts</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> source code made to be compatible with <a href="https://deno.land" title="Deno is a secure runtime for JavaScript and TypeScript, it is an alternative to Node.js">Deno</a></li></ul> |
@@ -9,3 +9,3 @@ { | ||
"strict": true, | ||
"target": "ES5", | ||
"target": "ES2022", | ||
"module": "ESNext", | ||
@@ -12,0 +12,0 @@ "downlevelIteration": true |
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
38437
21
18
184
169
1
1
+ Addededitions@^6.16.0
+ Addededitions@6.21.0(transitive)
+ Addedversion-range@4.14.0(transitive)