package.json
975 Bytes
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
{
"name": "is-function",
"version": "1.0.2",
"description": "is that thing a function? Use this module to find out",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"tape": "~2.3.2"
},
"scripts": {
"test": "tape test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/grncdr/js-is-function.git"
},
"homepage": "https://github.com/grncdr/js-is-function",
"keywords": [
"polyfill",
"is-function",
"ie6"
],
"author": "Stephen Sugden <me@stephensugden.com>",
"license": "MIT",
"testling": {
"files": "test.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"
]
}
}