CoolFace
Apppublic

Pinsave/counterstrike

sourceHugging Faceupdated 3mo agoView on Hugging Face
1likes
package.json46 linesDownload Raw Back to isarray
1{2  "name": "isarray",3  "description": "Array#isArray for older browsers",4  "version": "1.0.0",5  "repository": {6    "type": "git",7    "url": "git://github.com/juliangruber/isarray.git"8  },9  "homepage": "https://github.com/juliangruber/isarray",10  "main": "index.js",11  "dependencies": {},12  "devDependencies": {13    "tape": "~2.13.4"14  },15  "keywords": [16    "browser",17    "isarray",18    "array"19  ],20  "author": {21    "name": "Julian Gruber",22    "email": "mail@juliangruber.com",23    "url": "http://juliangruber.com"24  },25  "license": "MIT",26  "testling": {27    "files": "test.js",28    "browsers": [29      "ie/8..latest",30      "firefox/17..latest",31      "firefox/nightly",32      "chrome/22..latest",33      "chrome/canary",34      "opera/12..latest",35      "opera/next",36      "safari/5.1..latest",37      "ipad/6.0..latest",38      "iphone/6.0..latest",39      "android-browser/4.2..latest"40    ]41  },42  "scripts": {43    "test": "tape test.js"44  }45}46