Changeset 59329aa for trip-planner-front/node_modules/has-tostringtag
- 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/has-tostringtag/package.json
rceaed42 r59329aa 1 1 { 2 "name": "has-tostringtag", 3 "version": "1.0.0", 4 "author": { 5 "name": "Jordan Harband", 6 "email": "ljharb@gmail.com", 7 "url": "http://ljharb.codes" 8 }, 9 "funding": { 10 "url": "https://github.com/sponsors/ljharb" 11 }, 12 "contributors": [ 13 { 14 "name": "Jordan Harband", 15 "email": "ljharb@gmail.com", 16 "url": "http://ljharb.codes" 17 } 18 ], 19 "description": "Determine if the JS environment has `Symbol.toStringTag` support. Supports spec, or shams.", 20 "license": "MIT", 21 "main": "index.js", 22 "exports": { 23 ".": "./index.js", 24 "./shams": "./shams.js", 25 "./package.json": "./package.json" 26 }, 27 "scripts": { 28 "prepublishOnly": "safe-publish-latest", 29 "prepublish": "not-in-publish || npm run prepublishOnly", 30 "pretest": "npm run --silent lint", 31 "test": "npm run tests-only", 32 "posttest": "aud --production", 33 "tests-only": "npm run test:stock && npm run test:staging && npm run test:shams", 34 "test:stock": "nyc node test", 35 "test:staging": "nyc node --harmony --es-staging test", 36 "test:shams": "npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs", 37 "test:shams:corejs": "nyc node test/shams/core-js.js", 38 "test:shams:getownpropertysymbols": "nyc node test/shams/get-own-property-symbols.js", 39 "lint": "eslint --ext=js,mjs .", 40 "version": "auto-changelog && git add CHANGELOG.md", 41 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" 42 }, 43 "repository": { 44 "type": "git", 45 "url": "git+https://github.com/inspect-js/has-tostringtag.git" 46 }, 47 "bugs": { 48 "url": "https://github.com/inspect-js/has-tostringtag/issues" 49 }, 50 "homepage": "https://github.com/inspect-js/has-tostringtag#readme", 51 "keywords": [ 52 "javascript", 53 "ecmascript", 54 "symbol", 55 "symbols", 56 "tostringtag", 57 "Symbol.toStringTag" 58 ], 59 "dependencies": { 60 "has-symbols": "^1.0.2" 61 }, 62 "devDependencies": { 63 "@ljharb/eslint-config": "^17.6.0", 64 "aud": "^1.1.5", 65 "auto-changelog": "^2.3.0", 66 "core-js": "^2.6.12", 67 "eslint": "^7.32.0", 68 "get-own-property-symbols": "^0.9.5", 69 "nyc": "^10.3.2", 70 "safe-publish-latest": "^1.1.4", 71 "tape": "^5.3.0" 72 }, 73 "engines": { 74 "node": ">= 0.4" 75 }, 76 "auto-changelog": { 77 "output": "CHANGELOG.md", 78 "template": "keepachangelog", 79 "unreleased": false, 80 "commitLimit": false, 81 "backfillLimit": false, 82 "hideCredit": true 83 } 2 "_args": [ 3 [ 4 "has-tostringtag@1.0.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "has-tostringtag@1.0.0", 10 "_id": "has-tostringtag@1.0.0", 11 "_inBundle": false, 12 "_integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", 13 "_location": "/has-tostringtag", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "has-tostringtag@1.0.0", 19 "name": "has-tostringtag", 20 "escapedName": "has-tostringtag", 21 "rawSpec": "1.0.0", 22 "saveSpec": null, 23 "fetchSpec": "1.0.0" 24 }, 25 "_requiredBy": [ 26 "/is-arguments", 27 "/is-date-object", 28 "/is-regex" 29 ], 30 "_resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", 31 "_spec": "1.0.0", 32 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 33 "author": { 34 "name": "Jordan Harband", 35 "email": "ljharb@gmail.com", 36 "url": "http://ljharb.codes" 37 }, 38 "auto-changelog": { 39 "output": "CHANGELOG.md", 40 "template": "keepachangelog", 41 "unreleased": false, 42 "commitLimit": false, 43 "backfillLimit": false, 44 "hideCredit": true 45 }, 46 "bugs": { 47 "url": "https://github.com/inspect-js/has-tostringtag/issues" 48 }, 49 "contributors": [ 50 { 51 "name": "Jordan Harband", 52 "email": "ljharb@gmail.com", 53 "url": "http://ljharb.codes" 54 } 55 ], 56 "dependencies": { 57 "has-symbols": "^1.0.2" 58 }, 59 "description": "Determine if the JS environment has `Symbol.toStringTag` support. Supports spec, or shams.", 60 "devDependencies": { 61 "@ljharb/eslint-config": "^17.6.0", 62 "aud": "^1.1.5", 63 "auto-changelog": "^2.3.0", 64 "core-js": "^2.6.12", 65 "eslint": "^7.32.0", 66 "get-own-property-symbols": "^0.9.5", 67 "nyc": "^10.3.2", 68 "safe-publish-latest": "^1.1.4", 69 "tape": "^5.3.0" 70 }, 71 "engines": { 72 "node": ">= 0.4" 73 }, 74 "exports": { 75 ".": "./index.js", 76 "./shams": "./shams.js", 77 "./package.json": "./package.json" 78 }, 79 "funding": { 80 "url": "https://github.com/sponsors/ljharb" 81 }, 82 "homepage": "https://github.com/inspect-js/has-tostringtag#readme", 83 "keywords": [ 84 "javascript", 85 "ecmascript", 86 "symbol", 87 "symbols", 88 "tostringtag", 89 "Symbol.toStringTag" 90 ], 91 "license": "MIT", 92 "main": "index.js", 93 "name": "has-tostringtag", 94 "repository": { 95 "type": "git", 96 "url": "git+https://github.com/inspect-js/has-tostringtag.git" 97 }, 98 "scripts": { 99 "lint": "eslint --ext=js,mjs .", 100 "posttest": "aud --production", 101 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", 102 "prepublish": "not-in-publish || npm run prepublishOnly", 103 "prepublishOnly": "safe-publish-latest", 104 "pretest": "npm run --silent lint", 105 "test": "npm run tests-only", 106 "test:shams": "npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs", 107 "test:shams:corejs": "nyc node test/shams/core-js.js", 108 "test:shams:getownpropertysymbols": "nyc node test/shams/get-own-property-symbols.js", 109 "test:staging": "nyc node --harmony --es-staging test", 110 "test:stock": "nyc node test", 111 "tests-only": "npm run test:stock && npm run test:staging && npm run test:shams", 112 "version": "auto-changelog && git add CHANGELOG.md" 113 }, 114 "version": "1.0.0" 84 115 }
Note:
See TracChangeset
for help on using the changeset viewer.