1 |
3a515b92
|
cagy
|
{
|
2 |
|
|
"name": "is-date-object",
|
3 |
|
|
"version": "1.0.2",
|
4 |
|
|
"author": "Jordan Harband",
|
5 |
|
|
"funding": {
|
6 |
|
|
"url": "https://github.com/sponsors/ljharb"
|
7 |
|
|
},
|
8 |
|
|
"description": "Is this value a JS Date object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.",
|
9 |
|
|
"license": "MIT",
|
10 |
|
|
"main": "index.js",
|
11 |
|
|
"scripts": {
|
12 |
|
|
"prepublish": "safe-publish-latest",
|
13 |
|
|
"pretest": "npm run lint",
|
14 |
|
|
"test": "npm run tests-only",
|
15 |
|
|
"tests-only": "node --harmony --es-staging test",
|
16 |
|
|
"posttest": "npx aud",
|
17 |
|
|
"coverage": "covert test/index.js",
|
18 |
|
|
"lint": "eslint .",
|
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/ljharb/is-date-object.git"
|
25 |
|
|
},
|
26 |
|
|
"keywords": [
|
27 |
|
|
"Date",
|
28 |
|
|
"ES6",
|
29 |
|
|
"toStringTag",
|
30 |
|
|
"@@toStringTag",
|
31 |
|
|
"Date object"
|
32 |
|
|
],
|
33 |
|
|
"dependencies": {},
|
34 |
|
|
"devDependencies": {
|
35 |
|
|
"@ljharb/eslint-config": "^15.0.2",
|
36 |
|
|
"auto-changelog": "^1.16.2",
|
37 |
|
|
"covert": "^1.1.1",
|
38 |
|
|
"eslint": "^6.7.2",
|
39 |
|
|
"foreach": "^2.0.5",
|
40 |
|
|
"indexof": "^0.0.1",
|
41 |
|
|
"is": "^3.3.0",
|
42 |
|
|
"safe-publish-latest": "^1.1.4",
|
43 |
|
|
"tape": "^4.12.0"
|
44 |
|
|
},
|
45 |
|
|
"testling": {
|
46 |
|
|
"files": "test/index.js",
|
47 |
|
|
"browsers": [
|
48 |
|
|
"iexplore/6.0..latest",
|
49 |
|
|
"firefox/3.0..6.0",
|
50 |
|
|
"firefox/15.0..latest",
|
51 |
|
|
"firefox/nightly",
|
52 |
|
|
"chrome/4.0..10.0",
|
53 |
|
|
"chrome/20.0..latest",
|
54 |
|
|
"chrome/canary",
|
55 |
|
|
"opera/10.0..latest",
|
56 |
|
|
"opera/next",
|
57 |
|
|
"safari/4.0..latest",
|
58 |
|
|
"ipad/6.0..latest",
|
59 |
|
|
"iphone/6.0..latest",
|
60 |
|
|
"android-browser/4.2"
|
61 |
|
|
]
|
62 |
|
|
},
|
63 |
|
|
"engines": {
|
64 |
|
|
"node": ">= 0.4"
|
65 |
|
|
},
|
66 |
|
|
"auto-changelog": {
|
67 |
|
|
"output": "CHANGELOG.md",
|
68 |
|
|
"template": "keepachangelog",
|
69 |
|
|
"unreleased": false,
|
70 |
|
|
"commitLimit": false,
|
71 |
|
|
"backfillLimit": false
|
72 |
|
|
}
|
73 |
|
|
}
|