forked from dreamerslab/node.extend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (50 loc) · 1.28 KB
/
package.json
File metadata and controls
51 lines (50 loc) · 1.28 KB
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
{
"name" : "node.extend",
"version" : "1.0.7",
"description" : "A port of jQuery.extend that actually works on node.js",
"keywords" : [ "extend", "jQuery", "jQuery extend", "clone", "copy", "inherit" ],
"author" : "dreamerslab <ben@dreamerslab.com>",
"dependencies": {
"is": "~0.2.6",
"object-keys": "~0.3.0"
},
"devDependencies": {
"tape": "~1.0.2"
},
"repository" : {
"type": "git",
"url" : "https://github.com/dreamerslab/node.extend.git"
},
"contributors": [
{ "name": "Jordan Harband", "twitter": "https://twitter.com/ljharb" }
],
"main" : "index",
"scripts" : {
"test" : "node test/index.js"
},
"engines" : [ "node >= 0.4.0" ],
"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"
]
},
"licenses": [{
"type": "MIT",
"url" : "http://en.wikipedia.org/wiki/MIT_License"
}, {
"type": "GPL",
"url" : "http://en.wikipedia.org/wiki/GNU_General_Public_License"
}]
}