12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "name": "array-map",
- "version": "0.0.0",
- "description": "`[].map(f)` for older browsers",
- "main": "index.js",
- "devDependencies": {
- "tape": "~2.3.2"
- },
- "scripts": {
- "test": "tape test/*.js"
- },
- "repository": {
- "type": "git",
- "url": "git://github.com/substack/array-map.git"
- },
- "homepage": "https://github.com/substack/array-map",
- "keywords": [
- "array",
- "map",
- "browser",
- "es5",
- "shim",
- "ie6",
- "ie7",
- "ie8"
- ],
- "author": {
- "name": "James Halliday",
- "email": "mail@substack.net",
- "url": "http://substack.net"
- },
- "license": "MIT",
- "testling": {
- "files": "test/*.js",
- "browsers": [
- "ie/6..latest",
- "firefox/3.5","firefox/latest",
- "chrome/5","chrome/latest",
- "opera/12..latest", "opera/next",
- "safari/5.1..latest",
- "ipad/6.0..latest",
- "iphone/6.0..latest",
- "android-browser/4.2..latest"
- ]
- }
- }
|