{
	"name": "is-typed-array",
	"version": "1.1.0",
	"author": {
		"name": "Jordan Harband",
		"email": "ljharb@gmail.com",
		"url": "http://ljharb.codes"
	},
	"contributors": [
		{
			"name": "Jordan Harband",
			"email": "ljharb@gmail.com",
			"url": "http://ljharb.codes"
		}
	],
	"description": "Is this value a JS Typed Array? This module works cross-realm/iframe, does not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag.",
	"license": "MIT",
	"main": "index.js",
	"scripts": {
		"pretest": "npm run --silent lint",
		"test": "npm run tests-only",
		"tests-only": "node --es-staging test.js",
		"posttest": "npm run audit",
		"coverage": "covert test.js",
		"coverage-quiet": "covert test.js --quiet",
		"lint": "eslint .",
		"preaudit": "npm install --package-lock --package-lock-only",
		"audit": "npm audit",
		"postaudit": "rm package-lock.json"
	},
	"repository": {
		"type": "git",
		"url": "git://github.com/ljharb/is-typed-array.git"
	},
	"keywords": [
		"array",
		"TypedArray",
		"typed array",
		"is",
		"typed",
		"Int8Array",
		"Uint8Array",
		"Uint8ClampedArray",
		"Int16Array",
		"Uint16Array",
		"Int32Array",
		"Uint32Array",
		"Float32Array",
		"Float64Array",
		"ES6",
		"toStringTag",
		"Symbol.toStringTag",
		"@@toStringTag"
	],
	"dependencies": {
		"foreach": "^2.0.5"
	},
	"devDependencies": {
		"@ljharb/eslint-config": "^13.1.1",
		"covert": "^1.1.1",
		"eslint": "^5.14.0",
		"is-callable": "^1.1.4",
		"make-arrow-function": "^1.1.0",
		"make-generator-function": "^1.1.0",
		"replace": "^1.0.1",
		"semver": "^5.6.0",
		"tape": "^4.10.1"
	},
	"testling": {
		"files": "test.js",
		"browsers": [
			"iexplore/6.0..latest",
			"firefox/3.0..6.0",
			"firefox/15.0..latest",
			"firefox/nightly",
			"chrome/4.0..10.0",
			"chrome/20.0..latest",
			"chrome/canary",
			"opera/10.0..latest",
			"opera/next",
			"safari/4.0..latest",
			"ipad/6.0..latest",
			"iphone/6.0..latest",
			"android-browser/4.2"
		]
	},
	"engines": {
		"node": ">= 0.4"
	}
}
