| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {
- "name": "object-keys",
- "version": "0.4.0",
- "author": "Jordan Harband",
- "description": "An Object.keys replacement, in case Object.keys is not available. From https://github.com/kriskowal/es5-shim",
- "license": "MIT",
- "main": "index.js",
- "scripts": {
- "test": "node test/index.js"
- },
- "repository": {
- "type": "git",
- "url": "git://github.com/ljharb/object-keys.git"
- },
- "keywords": [
- "Object.keys",
- "keys",
- "ES5",
- "shim"
- ],
- "dependencies": {
- },
- "devDependencies": {
- "foreach": "~2.0.3",
- "is": "~0.2.6",
- "tape": "~1.0.4",
- "indexof": "~0.0.1"
- },
- "testling": {
- "files": "test/index.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"
- ]
- }
- }
|