Skip to content
Permalink
Newer
Older
100644 87 lines (87 sloc) 2.19 KB
Ignoring revisions in .git-blame-ignore-revs.
January 18, 2023 20:50
1
{
2
"name": "object-is",
3
"version": "1.1.5",
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
"prepublish": "safe-publish-latest",
13
"pretest": "npm run lint",
14
"tests-only": "nyc tape 'test/**/*.js'",
15
"test": "npm run tests-only",
16
"posttest": "aud --production",
17
"lint": "eslint .",
18
"postlint": "es-shim-api --bound",
19
"version": "auto-changelog && git add CHANGELOG.md",
20
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
21
},
22
"repository": {
23
"type": "git",
24
"url": "git://github.com/es-shims/object-is.git"
25
},
26
"bugs": {
27
"url": "https://github.com/es-shims/object-is/issues"
28
},
29
"homepage": "https://github.com/es-shims/object-is",
30
"keywords": [
31
"is",
32
"Object.is",
33
"equality",
34
"sameValueZero",
35
"ES6",
36
"ES2015",
37
"shim",
38
"polyfill",
39
"es-shim API"
40
],
41
"dependencies": {
42
"call-bind": "^1.0.2",
43
"define-properties": "^1.1.3"
44
},
45
"devDependencies": {
46
"@es-shims/api": "^2.1.2",
47
"@ljharb/eslint-config": "^17.5.1",
48
"aud": "^1.1.4",
49
"auto-changelog": "^2.2.1",
50
"eslint": "^7.20.0",
51
"functions-have-names": "^1.2.2",
52
"has-symbols": "^1.0.1",
53
"nyc": "^10.3.2",
54
"safe-publish-latest": "^1.1.4",
55
"tape": "^5.2.0"
56
},
57
"testling": {
58
"files": "test.js",
59
"browsers": [
60
"iexplore/6.0..latest",
61
"firefox/3.0..6.0",
62
"firefox/15.0..latest",
63
"firefox/nightly",
64
"chrome/4.0..10.0",
65
"chrome/20.0..latest",
66
"chrome/canary",
67
"opera/10.0..12.0",
68
"opera/15.0..latest",
69
"opera/next",
70
"safari/4.0..latest",
71
"ipad/6.0..latest",
72
"iphone/6.0..latest",
73
"android-browser/4.2"
74
]
75
},
76
"engines": {
77
"node": ">= 0.4"
78
},
79
"auto-changelog": {
80
"output": "CHANGELOG.md",
81
"template": "keepachangelog",
82
"unreleased": false,
83
"commitLimit": false,
84
"backfillLimit": false,
85
"hideCredit": true
86
}
87
}