binaryextensions
Advanced tools
Comparing version 4.0.0 to 4.1.0-next.1591773547.1074e77839f697dad7132bc9f7458756475bf752
# History | ||
## v4.0.0 2020 May 21 | ||
## v4.1.0 2020 June 10 | ||
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation) | ||
## v4.0.0 2020 May 30 | ||
- Breaking Change: If you are using CommonJS, you must now do `require('binaryextensions').default` | ||
@@ -6,0 +10,0 @@ - If you want a JSON file, it is available via `binaryextensions/list.json`, and CDN access is available via https://unpkg.com/binaryextensions/list.json |
{ | ||
"title": "The Definitive List of Binary Extensions", | ||
"name": "binaryextensions", | ||
"version": "4.0.0", | ||
"version": "4.1.0-next.1591773547.1074e77839f697dad7132bc9f7458756475bf752", | ||
"description": "A package that contains an array of every single file extension there is for binary files", | ||
@@ -111,2 +111,16 @@ "homepage": "https://github.com/bevry/binaryextensions", | ||
} | ||
}, | ||
{ | ||
"description": "TypeScript source code made to be compatible with Deno", | ||
"directory": "edition-deno", | ||
"entry": "index.ts", | ||
"tags": [ | ||
"typescript", | ||
"import", | ||
"deno" | ||
], | ||
"engines": { | ||
"deno": true, | ||
"browsers": true | ||
} | ||
} | ||
@@ -119,8 +133,9 @@ ], | ||
"module": "edition-browsers/index.js", | ||
"deno": "edition-deno/index.ts", | ||
"devDependencies": { | ||
"@bevry/update-contributors": "^1.8.0", | ||
"@typescript-eslint/eslint-plugin": "^3.0.2", | ||
"@typescript-eslint/parser": "^3.0.2", | ||
"assert-helpers": "^6.6.0", | ||
"eslint": "^7.1.0", | ||
"@typescript-eslint/eslint-plugin": "^3.2.0", | ||
"@typescript-eslint/parser": "^3.2.0", | ||
"assert-helpers": "^6.7.0", | ||
"eslint": "^7.2.0", | ||
"eslint-config-bevry": "^3.7.0", | ||
@@ -130,8 +145,9 @@ "eslint-config-prettier": "^6.11.0", | ||
"kava": "^5.3.0", | ||
"make-deno-edition": "^0.1.2", | ||
"prettier": "^2.0.5", | ||
"projectz": "^2.4.0", | ||
"projectz": "^2.5.0", | ||
"surge": "^0.21.3", | ||
"textextensions": "^4.4.0", | ||
"textextensions": "^5.1.0", | ||
"typedoc": "^0.17.7", | ||
"typescript": "^3.9.3", | ||
"typescript": "^3.9.5", | ||
"valid-directory": "^2.2.0", | ||
@@ -142,3 +158,4 @@ "valid-module": "^1.3.0" | ||
"our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next", | ||
"our:compile": "npm run our:compile:edition-browsers && npm run our:compile:edition-es5 && npm run our:compile:types", | ||
"our:compile": "npm run our:compile:deno && npm run our:compile:edition-browsers && npm run our:compile:edition-es5 && 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 ) )", | ||
@@ -145,0 +162,0 @@ "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 ) )", |
@@ -71,2 +71,8 @@ <!-- TITLE/ --> | ||
<a href="https://deno.land" title="Deno is a secure runtime for JavaScript and TypeScript, it is an alternative for Node.js"><h3>Deno</h3></a> | ||
``` typescript | ||
import pkg from 'https://unpkg.com/binaryextensions@^4.1.0/edition-deno/index.ts' | ||
``` | ||
<a href="https://www.pika.dev/cdn" title="100% Native ES Modules CDN"><h3>pika</h3></a> | ||
@@ -76,3 +82,3 @@ | ||
<script type="module"> | ||
import pkg from '//cdn.pika.dev/binaryextensions/^4.0.0' | ||
import pkg from '//cdn.pika.dev/binaryextensions/^4.1.0' | ||
</script> | ||
@@ -85,3 +91,3 @@ ``` | ||
<script type="module"> | ||
import pkg from '//unpkg.com/binaryextensions@^4.0.0' | ||
import pkg from '//unpkg.com/binaryextensions@^4.1.0' | ||
</script> | ||
@@ -94,3 +100,3 @@ ``` | ||
<script type="module"> | ||
import pkg from '//dev.jspm.io/binaryextensions@4.0.0' | ||
import pkg from '//dev.jspm.io/binaryextensions@4.1.0' | ||
</script> | ||
@@ -106,3 +112,4 @@ ``` | ||
<li><code>binaryextensions</code> aliases <code>binaryextensions/edition-es5/index.js</code></li> | ||
<li><code>binaryextensions/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></ul> | ||
<li><code>binaryextensions/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>binaryextensions/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> | ||
@@ -109,0 +116,0 @@ <!-- /INSTALL --> |
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
23818
13
86
171
18
1