Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/which-boxed-primitive/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "which-boxed-primitive", 3 "version": "1.0.2", 4 "description": "Which kind of boxed JS primitive is this?", 5 "main": "index.js", 6 "scripts": { 7 "preversion": "auto-changelog", 8 "prepublish": "not-in-publish || safe-publish-latest", 9 "lint": "eslint --ext=js,mjs .", 10 "pretest": "npm run lint", 11 "tests-only": "nyc tape 'test/**/*.js'", 12 "test": "npm run tests-only", 13 "posttest": "aud --production", 14 "version": "auto-changelog && git add CHANGELOG.md", 15 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" 16 }, 17 "repository": { 18 "type": "git", 19 "url": "git+https://github.com/inspect-js/which-boxed-primitive.git" 20 }, 21 "keywords": [ 22 "boxed", 23 "primitive", 24 "object", 25 "ecmascript", 26 "javascript", 27 "which" 28 ], 29 "author": "Jordan Harband <ljharb@gmail.com>", 30 "funding": { 31 "url": "https://github.com/sponsors/ljharb" 32 }, 33 "license": "MIT", 34 "bugs": { 35 "url": "https://github.com/inspect-js/which-boxed-primitive/issues" 36 }, 37 "homepage": "https://github.com/inspect-js/which-boxed-primitive#readme", 38 "dependencies": { 39 "is-bigint": "^1.0.1", 40 "is-boolean-object": "^1.1.0", 41 "is-number-object": "^1.0.4", 42 "is-string": "^1.0.5", 43 "is-symbol": "^1.0.3" 44 }, 45 "devDependencies": { 46 "@ljharb/eslint-config": "^17.3.0", 47 "aud": "^1.1.3", 48 "auto-changelog": "^2.2.1", 49 "eslint": "^7.15.0", 50 "has-symbols": "^1.0.1", 51 "in-publish": "^2.0.1", 52 "nyc": "^10.3.2", 53 "object-inspect": "^1.9.0", 54 "safe-publish-latest": "^1.1.4", 55 "tape": "^5.0.1" 56 }, 57 "auto-changelog": { 58 "output": "CHANGELOG.md", 59 "template": "keepachangelog", 60 "unreleased": false, 61 "commitLimit": false, 62 "backfillLimit": false, 63 "hideCredit": true 64 } 2 "_from": "which-boxed-primitive@^1.1.0", 3 "_id": "which-boxed-primitive@1.1.1", 4 "_inBundle": false, 5 "_integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", 6 "_location": "/which-boxed-primitive", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "which-boxed-primitive@^1.1.0", 12 "name": "which-boxed-primitive", 13 "escapedName": "which-boxed-primitive", 14 "rawSpec": "^1.1.0", 15 "saveSpec": null, 16 "fetchSpec": "^1.1.0" 17 }, 18 "_requiredBy": [ 19 "/unbox-primitive", 20 "/which-builtin-type" 21 ], 22 "_resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", 23 "_shasum": "d76ec27df7fa165f18d5808374a5fe23c29b176e", 24 "_spec": "which-boxed-primitive@^1.1.0", 25 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/which-builtin-type", 26 "author": { 27 "name": "Jordan Harband", 28 "email": "ljharb@gmail.com" 29 }, 30 "auto-changelog": { 31 "output": "CHANGELOG.md", 32 "template": "keepachangelog", 33 "unreleased": false, 34 "commitLimit": false, 35 "backfillLimit": false, 36 "hideCredit": true 37 }, 38 "bugs": { 39 "url": "https://github.com/inspect-js/which-boxed-primitive/issues" 40 }, 41 "bundleDependencies": false, 42 "dependencies": { 43 "is-bigint": "^1.1.0", 44 "is-boolean-object": "^1.2.1", 45 "is-number-object": "^1.1.1", 46 "is-string": "^1.1.1", 47 "is-symbol": "^1.1.1" 48 }, 49 "deprecated": false, 50 "description": "Which kind of boxed JS primitive is this?", 51 "devDependencies": { 52 "@arethetypeswrong/cli": "^0.17.1", 53 "@ljharb/eslint-config": "^21.1.1", 54 "@ljharb/tsconfig": "^0.2.2", 55 "@types/for-each": "^0.3.3", 56 "@types/object-inspect": "^1.13.0", 57 "@types/tape": "^5.7.0", 58 "auto-changelog": "^2.5.0", 59 "encoding": "^0.1.13", 60 "es-value-fixtures": "^1.5.0", 61 "eslint": "=8.8.0", 62 "for-each": "^0.3.3", 63 "in-publish": "^2.0.1", 64 "npmignore": "^0.3.1", 65 "nyc": "^10.3.2", 66 "object-inspect": "^1.13.3", 67 "safe-publish-latest": "^2.0.0", 68 "tape": "^5.9.0", 69 "typescript": "next" 70 }, 71 "engines": { 72 "node": ">= 0.4" 73 }, 74 "funding": { 75 "url": "https://github.com/sponsors/ljharb" 76 }, 77 "homepage": "https://github.com/inspect-js/which-boxed-primitive#readme", 78 "keywords": [ 79 "boxed", 80 "primitive", 81 "object", 82 "ecmascript", 83 "javascript", 84 "which" 85 ], 86 "license": "MIT", 87 "main": "index.js", 88 "name": "which-boxed-primitive", 89 "publishConfig": { 90 "ignore": [ 91 ".github/workflows" 92 ] 93 }, 94 "repository": { 95 "type": "git", 96 "url": "git+https://github.com/inspect-js/which-boxed-primitive.git" 97 }, 98 "scripts": { 99 "lint": "eslint --ext=js,mjs .", 100 "postlint": "tsc -p . && attw -P", 101 "posttest": "npx npm@'>=10.2' audit --production", 102 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", 103 "prepack": "npmignore --auto --commentLines=autogenerated", 104 "prepublish": "not-in-publish || npm run prepublishOnly", 105 "prepublishOnly": "safe-publish-latest", 106 "pretest": "npm run lint", 107 "test": "npm run tests-only", 108 "tests-only": "nyc tape 'test/**/*.js'", 109 "version": "auto-changelog && git add CHANGELOG.md" 110 }, 111 "version": "1.1.1" 65 112 }
Note:
See TracChangeset
for help on using the changeset viewer.