-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 KB
/
package.json
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
49
50
51
52
53
54
{
"name" : "fun-js",
"version" : "0.0.3",
"description" : "Another functional programming library for js",
"keywords" : [
"functional"
],
"homepage" : "http://github.com/briansorahan/fun-js",
"author" : {
"name" : "Brian Sorahan",
"email" : "[email protected]",
"url" : "http://github.com/briansorahan"
},
"contributors" : [
{
"name" : "Brian Sorahan",
"email" : "[email protected]",
"url" : "http://github.com/briansorahan"
},
{
"name" : "Linus Norton",
"url" : "http://www.linusnorton.co.uk/"
}
],
"files" : [
"fun.js"
],
"main" : "fun",
"repository" : {
"type" : "git",
"url" : "http://github.com/briansorahan/fun-js.git"
},
"devDependencies" : {
"browserify": "3.46.0",
"tape" : "2.12.3",
"testling" : "1.6.1"
},
"testling" : {
"files" : "test/run.js",
"browsers" : [
"ie/9..10",
"chrome/22..latest",
"ff/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/4.2"
]
},
"scripts" : {
"test" : "make test"
}
}