Changeset 79a0317 for imaps-frontend/node_modules/is-callable
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/is-callable/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "is-callable", 3 "version": "1.2.7", 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": "Is this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag.", 20 "license": "MIT", 21 "main": "index.js", 22 "scripts": { 23 "prepack": "npmignore --auto --commentLines=autogenerated", 24 "version": "auto-changelog && git add CHANGELOG.md", 25 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", 26 "prepublishOnly": "safe-publish-latest", 27 "prepublish": "not-in-publish || npm run prepublishOnly", 28 "pretest": "npm run --silent lint", 29 "test": "npm run tests-only --", 30 "posttest": "aud --production", 31 "tests-only": "nyc tape 'test/**/*.js'", 32 "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')", 33 "lint": "eslint --ext=js,mjs ." 34 }, 35 "repository": { 36 "type": "git", 37 "url": "git://github.com/inspect-js/is-callable.git" 38 }, 39 "keywords": [ 40 "Function", 41 "function", 42 "callable", 43 "generator", 44 "generator function", 45 "arrow", 46 "arrow function", 47 "ES6", 48 "toStringTag", 49 "@@toStringTag" 50 ], 51 "devDependencies": { 52 "@ljharb/eslint-config": "^21.0.0", 53 "aud": "^2.0.0", 54 "auto-changelog": "^2.4.0", 55 "available-typed-arrays": "^1.0.5", 56 "eclint": "^2.8.1", 57 "es-value-fixtures": "^1.4.2", 58 "eslint": "=8.8.0", 59 "for-each": "^0.3.3", 60 "has-tostringtag": "^1.0.0", 61 "make-arrow-function": "^1.2.0", 62 "make-async-function": "^1.0.0", 63 "make-generator-function": "^2.0.0", 64 "npmignore": "^0.3.0", 65 "nyc": "^10.3.2", 66 "object-inspect": "^1.12.2", 67 "rimraf": "^2.7.1", 68 "safe-publish-latest": "^2.0.0", 69 "tape": "^5.6.0" 70 }, 71 "testling": { 72 "files": "test/index.js", 73 "browsers": [ 74 "iexplore/6.0..latest", 75 "firefox/3.0..6.0", 76 "firefox/15.0..latest", 77 "firefox/nightly", 78 "chrome/4.0..10.0", 79 "chrome/20.0..latest", 80 "chrome/canary", 81 "opera/10.0..latest", 82 "opera/next", 83 "safari/4.0..latest", 84 "ipad/6.0..latest", 85 "iphone/6.0..latest", 86 "android-browser/4.2" 87 ] 88 }, 89 "engines": { 90 "node": ">= 0.4" 91 }, 92 "auto-changelog": { 93 "output": "CHANGELOG.md", 94 "template": "keepachangelog", 95 "unreleased": false, 96 "commitLimit": false, 97 "backfillLimit": false, 98 "hideCredit": true, 99 "startingVersion": "v1.2.5" 100 }, 101 "publishConfig": { 102 "ignore": [ 103 ".github/workflows" 104 ] 105 } 2 "_from": "is-callable@^1.2.7", 3 "_id": "is-callable@1.2.7", 4 "_inBundle": false, 5 "_integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 6 "_location": "/is-callable", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "is-callable@^1.2.7", 12 "name": "is-callable", 13 "escapedName": "is-callable", 14 "rawSpec": "^1.2.7", 15 "saveSpec": null, 16 "fetchSpec": "^1.2.7" 17 }, 18 "_requiredBy": [ 19 "/es-abstract", 20 "/es-to-primitive", 21 "/for-each", 22 "/function.prototype.name" 23 ], 24 "_resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 25 "_shasum": "3bc2a85ea742d9e36205dcacdd72ca1fdc51b055", 26 "_spec": "is-callable@^1.2.7", 27 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/es-abstract", 28 "author": { 29 "name": "Jordan Harband", 30 "email": "ljharb@gmail.com", 31 "url": "http://ljharb.codes" 32 }, 33 "auto-changelog": { 34 "output": "CHANGELOG.md", 35 "template": "keepachangelog", 36 "unreleased": false, 37 "commitLimit": false, 38 "backfillLimit": false, 39 "hideCredit": true, 40 "startingVersion": "v1.2.5" 41 }, 42 "bugs": { 43 "url": "https://github.com/inspect-js/is-callable/issues" 44 }, 45 "bundleDependencies": false, 46 "contributors": [ 47 { 48 "name": "Jordan Harband", 49 "email": "ljharb@gmail.com", 50 "url": "http://ljharb.codes" 51 } 52 ], 53 "deprecated": false, 54 "description": "Is this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag.", 55 "devDependencies": { 56 "@ljharb/eslint-config": "^21.0.0", 57 "aud": "^2.0.0", 58 "auto-changelog": "^2.4.0", 59 "available-typed-arrays": "^1.0.5", 60 "eclint": "^2.8.1", 61 "es-value-fixtures": "^1.4.2", 62 "eslint": "=8.8.0", 63 "for-each": "^0.3.3", 64 "has-tostringtag": "^1.0.0", 65 "make-arrow-function": "^1.2.0", 66 "make-async-function": "^1.0.0", 67 "make-generator-function": "^2.0.0", 68 "npmignore": "^0.3.0", 69 "nyc": "^10.3.2", 70 "object-inspect": "^1.12.2", 71 "rimraf": "^2.7.1", 72 "safe-publish-latest": "^2.0.0", 73 "tape": "^5.6.0" 74 }, 75 "engines": { 76 "node": ">= 0.4" 77 }, 78 "funding": { 79 "url": "https://github.com/sponsors/ljharb" 80 }, 81 "homepage": "https://github.com/inspect-js/is-callable#readme", 82 "keywords": [ 83 "Function", 84 "function", 85 "callable", 86 "generator", 87 "generator function", 88 "arrow", 89 "arrow function", 90 "ES6", 91 "toStringTag", 92 "@@toStringTag" 93 ], 94 "license": "MIT", 95 "main": "index.js", 96 "name": "is-callable", 97 "publishConfig": { 98 "ignore": [ 99 ".github/workflows" 100 ] 101 }, 102 "repository": { 103 "type": "git", 104 "url": "git://github.com/inspect-js/is-callable.git" 105 }, 106 "scripts": { 107 "lint": "eslint --ext=js,mjs .", 108 "posttest": "aud --production", 109 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", 110 "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')", 111 "prepack": "npmignore --auto --commentLines=autogenerated", 112 "prepublish": "not-in-publish || npm run prepublishOnly", 113 "prepublishOnly": "safe-publish-latest", 114 "pretest": "npm run --silent lint", 115 "test": "npm run tests-only --", 116 "tests-only": "nyc tape 'test/**/*.js'", 117 "version": "auto-changelog && git add CHANGELOG.md" 118 }, 119 "testling": { 120 "files": "test/index.js", 121 "browsers": [ 122 "iexplore/6.0..latest", 123 "firefox/3.0..6.0", 124 "firefox/15.0..latest", 125 "firefox/nightly", 126 "chrome/4.0..10.0", 127 "chrome/20.0..latest", 128 "chrome/canary", 129 "opera/10.0..latest", 130 "opera/next", 131 "safari/4.0..latest", 132 "ipad/6.0..latest", 133 "iphone/6.0..latest", 134 "android-browser/4.2" 135 ] 136 }, 137 "version": "1.2.7" 106 138 }
Note:
See TracChangeset
for help on using the changeset viewer.