1
|
{
|
2
|
"name": "object-is",
|
3
|
"version": "1.0.2",
|
4
|
"description": "ES2015-compliant shim for Object.is - differentiates between -0 and +0",
|
5
|
"author": "Jordan Harband",
|
6
|
"funding": {
|
7
|
"url": "https://github.com/sponsors/ljharb"
|
8
|
},
|
9
|
"license": "MIT",
|
10
|
"main": "index.js",
|
11
|
"scripts": {
|
12
|
"version": "auto-changelog && git add CHANGELOG.md",
|
13
|
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
|
14
|
"pretest": "npm run lint",
|
15
|
"tests-only": "node test",
|
16
|
"test": "npm run tests-only",
|
17
|
"posttest": "npx aud",
|
18
|
"coverage": "covert test",
|
19
|
"lint": "eslint ."
|
20
|
},
|
21
|
"repository": {
|
22
|
"type": "git",
|
23
|
"url": "git://github.com/es-shims/object-is.git"
|
24
|
},
|
25
|
"bugs": {
|
26
|
"url": "https://github.com/es-shims/object-is/issues"
|
27
|
},
|
28
|
"homepage": "https://github.com/es-shims/object-is",
|
29
|
"keywords": [
|
30
|
"is",
|
31
|
"Object.is",
|
32
|
"equality",
|
33
|
"sameValueZero",
|
34
|
"ES6",
|
35
|
"ES2015",
|
36
|
"shim",
|
37
|
"polyfill"
|
38
|
],
|
39
|
"dependencies": {},
|
40
|
"devDependencies": {
|
41
|
"@ljharb/eslint-config": "^15.0.2",
|
42
|
"auto-changelog": "^1.16.2",
|
43
|
"covert": "^1.1.1",
|
44
|
"eslint": "^6.7.2",
|
45
|
"has-symbols": "^1.0.1",
|
46
|
"tape": "^4.11.0"
|
47
|
},
|
48
|
"testling": {
|
49
|
"files": "test.js",
|
50
|
"browsers": [
|
51
|
"iexplore/6.0..latest",
|
52
|
"firefox/3.0..6.0",
|
53
|
"firefox/15.0..latest",
|
54
|
"firefox/nightly",
|
55
|
"chrome/4.0..10.0",
|
56
|
"chrome/20.0..latest",
|
57
|
"chrome/canary",
|
58
|
"opera/10.0..12.0",
|
59
|
"opera/15.0..latest",
|
60
|
"opera/next",
|
61
|
"safari/4.0..latest",
|
62
|
"ipad/6.0..latest",
|
63
|
"iphone/6.0..latest",
|
64
|
"android-browser/4.2"
|
65
|
]
|
66
|
},
|
67
|
"engines": {
|
68
|
"node": ">= 0.4"
|
69
|
},
|
70
|
"auto-changelog": {
|
71
|
"output": "CHANGELOG.md",
|
72
|
"template": "keepachangelog",
|
73
|
"unreleased": false,
|
74
|
"commitLimit": false,
|
75
|
"backfillLimit": false
|
76
|
}
|
77
|
}
|