This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.

49 lines
977 B
JSON
Raw Permalink Normal View History

2021-04-02 02:24:13 +03:00
{
"name": "array-reduce",
"version": "0.0.0",
"description": "`[].reduce()` for old browsers",
"main": "index.js",
"devDependencies": {
"tape": "~2.3.2"
},
"scripts": {
"test": "tape test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/substack/array-reduce.git"
},
"homepage": "https://github.com/substack/array-reduce",
"keywords": [
"array",
"reduce",
"es5",
"ie6",
"ie7",
"ie8",
"fold"
],
"author": {
"name": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net"
},
"license": "MIT",
"testling": {
"files": "test/*.js",
"browsers": [
"ie/8..latest",
"firefox/16..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
}
}