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
64 lines (64 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.46 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "node.extend",
"version": "1.1.5",
"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": "^3.1.0"
},
"devDependencies": {
"tape": "^4.2.1",
"covert": "^1.1.0",
"jscs": "^2.3.4",
"eslint": "^1.7.1",
"@ljharb/eslint-config": "^1.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/dreamerslab/node.extend.git"
},
"contributors": [
{
"name": "Jordan Harband",
"twitter": "https://twitter.com/ljharb"
}
],
"main": "index",
"scripts": {
"test": "npm run lint && node test/index.js && npm run coverage-quiet",
"coverage": "covert test/index.js",
"coverage-quiet": "covert test/index.js --quiet",
"lint": "npm run jscs && npm run eslint",
"jscs": "jscs *.js */*.js",
"eslint": "eslint *.js */*.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"
]
},
"license": "(MIT OR GPL-2.0)"
}