aboutsummaryrefslogtreecommitdiff
path: root/node_modules/object-keys/package.json
blob: da429a16a2be00713456cb2a8722979e90fa8141 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
	"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"
		]
	}
}