forked from ljharb/object.assign
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (61 loc) · 1.31 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
55
56
57
58
59
60
61
{
"name": "object-assign-shim",
"version": "1.0.0",
"author": "Dimitri Benin",
"description": "ES6 spec-compliant Object.assign shim. Shims Object constructor automatically.",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "npm run lint && node test/index.js && npm run security",
"coverage": "covert test/*.js",
"coverage:quiet": "covert test/*.js --quiet",
"lint": "npm run jscs && npm run eslint",
"eslint": "eslint *.js test/*.js",
"jscs": "jscs *.js test/*.js",
"security": "nsp package"
},
"repository": {
"type": "git",
"url": "git://github.com/BendingBender/object-assign-shim.git"
},
"keywords": [
"Object.assign",
"assign",
"ES6",
"extend",
"$.extend",
"jQuery",
"_.extend",
"Underscore"
],
"dependencies": {},
"devDependencies": {
"is": "^3.0.1",
"tape": "^4.0.0",
"covert": "^1.1.0",
"jscs": "^1.13.1",
"nsp": "^1.0.1",
"eslint": "^0.21.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",
"android-browser/4.2"
]
},
"engines": {
"node": ">= 0.4"
}
}