Skip to content

Commit

Permalink
npm init
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jan 24, 2020
1 parent 2bc5144 commit 9194266
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions package.json
@@ -0,0 +1,37 @@
{
"name": "available-typed-arrays",
"version": "0.0.0",
"description": "Returns an array of Typed Array names that are available in the current environment",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inspect-js/available-typed-arrays.git"
},
"keywords": [
"typed",
"arrays",
"Float32Array",
"Float64Array",
"Int8Array",
"Int16Array",
"Int32Array",
"Uint8Array",
"Uint8ClampedArray",
"Uint16Array",
"Uint32Array",
"BigInt64Array",
"BigUint64Array"
],
"author": "Jordan Harband <ljharb@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/inspect-js/available-typed-arrays/issues"
},
"homepage": "https://github.com/inspect-js/available-typed-arrays#readme",
"engines": {
"node": ">= 0.4"
}
}

0 comments on commit 9194266

Please sign in to comment.