Changeset 59329aa for trip-planner-front/node_modules/is-date-object
- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/is-date-object/package.json
rceaed42 r59329aa 1 1 { 2 "name": "is-date-object", 3 "version": "1.0.5", 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 "prepublishOnly": "safe-publish-latest", 13 "prepublish": "not-in-publish || npm run prepublishOnly", 14 "pretest": "npm run lint", 15 "test": "npm run tests-only && npm run test:corejs", 16 "tests-only": "nyc tape 'test/**/*.js'", 17 "test:corejs": "nyc tape test-corejs.js", 18 "posttest": "aud --production", 19 "lint": "eslint .", 20 "version": "auto-changelog && git add CHANGELOG.md", 21 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" 22 }, 23 "repository": { 24 "type": "git", 25 "url": "git://github.com/inspect-js/is-date-object.git" 26 }, 27 "keywords": [ 28 "Date", 29 "ES6", 30 "toStringTag", 31 "@@toStringTag", 32 "Date object" 33 ], 34 "dependencies": { 35 "has-tostringtag": "^1.0.0" 36 }, 37 "devDependencies": { 38 "@ljharb/eslint-config": "^17.6.0", 39 "aud": "^1.1.5", 40 "auto-changelog": "^2.3.0", 41 "core-js": "^3.12.0", 42 "eslint": "^7.32.0", 43 "foreach": "^2.0.5", 44 "indexof": "^0.0.1", 45 "is": "^3.3.0", 46 "nyc": "^10.3.2", 47 "safe-publish-latest": "^1.1.4", 48 "tape": "^5.3.0" 49 }, 50 "testling": { 51 "files": "test/index.js", 52 "browsers": [ 53 "iexplore/6.0..latest", 54 "firefox/3.0..6.0", 55 "firefox/15.0..latest", 56 "firefox/nightly", 57 "chrome/4.0..10.0", 58 "chrome/20.0..latest", 59 "chrome/canary", 60 "opera/10.0..latest", 61 "opera/next", 62 "safari/4.0..latest", 63 "ipad/6.0..latest", 64 "iphone/6.0..latest", 65 "android-browser/4.2" 66 ] 67 }, 68 "engines": { 69 "node": ">= 0.4" 70 }, 71 "auto-changelog": { 72 "output": "CHANGELOG.md", 73 "template": "keepachangelog", 74 "unreleased": false, 75 "commitLimit": false, 76 "backfillLimit": false, 77 "hideCredit": true 78 } 2 "_args": [ 3 [ 4 "is-date-object@1.0.5", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "is-date-object@1.0.5", 10 "_id": "is-date-object@1.0.5", 11 "_inBundle": false, 12 "_integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", 13 "_location": "/is-date-object", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "is-date-object@1.0.5", 19 "name": "is-date-object", 20 "escapedName": "is-date-object", 21 "rawSpec": "1.0.5", 22 "saveSpec": null, 23 "fetchSpec": "1.0.5" 24 }, 25 "_requiredBy": [ 26 "/deep-equal" 27 ], 28 "_resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", 29 "_spec": "1.0.5", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "Jordan Harband" 33 }, 34 "auto-changelog": { 35 "output": "CHANGELOG.md", 36 "template": "keepachangelog", 37 "unreleased": false, 38 "commitLimit": false, 39 "backfillLimit": false, 40 "hideCredit": true 41 }, 42 "bugs": { 43 "url": "https://github.com/inspect-js/is-date-object/issues" 44 }, 45 "dependencies": { 46 "has-tostringtag": "^1.0.0" 47 }, 48 "description": "Is this value a JS Date object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", 49 "devDependencies": { 50 "@ljharb/eslint-config": "^17.6.0", 51 "aud": "^1.1.5", 52 "auto-changelog": "^2.3.0", 53 "core-js": "^3.12.0", 54 "eslint": "^7.32.0", 55 "foreach": "^2.0.5", 56 "indexof": "^0.0.1", 57 "is": "^3.3.0", 58 "nyc": "^10.3.2", 59 "safe-publish-latest": "^1.1.4", 60 "tape": "^5.3.0" 61 }, 62 "engines": { 63 "node": ">= 0.4" 64 }, 65 "funding": { 66 "url": "https://github.com/sponsors/ljharb" 67 }, 68 "homepage": "https://github.com/inspect-js/is-date-object#readme", 69 "keywords": [ 70 "Date", 71 "ES6", 72 "toStringTag", 73 "@@toStringTag", 74 "Date object" 75 ], 76 "license": "MIT", 77 "main": "index.js", 78 "name": "is-date-object", 79 "repository": { 80 "type": "git", 81 "url": "git://github.com/inspect-js/is-date-object.git" 82 }, 83 "scripts": { 84 "lint": "eslint .", 85 "posttest": "aud --production", 86 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", 87 "prepublish": "not-in-publish || npm run prepublishOnly", 88 "prepublishOnly": "safe-publish-latest", 89 "pretest": "npm run lint", 90 "test": "npm run tests-only && npm run test:corejs", 91 "test:corejs": "nyc tape test-corejs.js", 92 "tests-only": "nyc tape 'test/**/*.js'", 93 "version": "auto-changelog && git add CHANGELOG.md" 94 }, 95 "testling": { 96 "files": "test/index.js", 97 "browsers": [ 98 "iexplore/6.0..latest", 99 "firefox/3.0..6.0", 100 "firefox/15.0..latest", 101 "firefox/nightly", 102 "chrome/4.0..10.0", 103 "chrome/20.0..latest", 104 "chrome/canary", 105 "opera/10.0..latest", 106 "opera/next", 107 "safari/4.0..latest", 108 "ipad/6.0..latest", 109 "iphone/6.0..latest", 110 "android-browser/4.2" 111 ] 112 }, 113 "version": "1.0.5" 79 114 }
Note:
See TracChangeset
for help on using the changeset viewer.