Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/possible-typed-array-names/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "possible-typed-array-names", 3 "version": "1.0.0", 4 "description": "A simple list of possible Typed Array names.", 5 "main": "index.js", 6 "exports": { 7 ".": "./index.js", 8 "./package.json": "./package.json" 9 }, 10 "types": "./index.d.ts", 11 "sideEffects": false, 12 "scripts": { 13 "prepack": "npmignore --auto --commentLines=autogenerated", 14 "prepublishOnly": "safe-publish-latest", 15 "prepublish": "not-in-publish || npm run prepublishOnly", 16 "pretest": "npm run lint", 17 "test": "npm run tests-only", 18 "tests-only": "nyc tape 'test/**/*.js'", 19 "posttest": "aud --production", 20 "prelint": "evalmd README.md", 21 "lint": "eslint --ext=js,mjs .", 22 "postlint": "tsc -p . && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)", 23 "version": "auto-changelog && git add CHANGELOG.md", 24 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" 25 }, 26 "repository": { 27 "type": "git", 28 "url": "git+https://github.com/ljharb/possible-typed-array-names.git" 29 }, 30 "keywords": [ 31 "typed", 32 "array", 33 "typedarray", 34 "Float32Array", 35 "Float64Array", 36 "Int8Array", 37 "Int16Array", 38 "Int32Array", 39 "Uint8Array", 40 "Uint8ClampedArray", 41 "Uint16Array", 42 "Uint32Array", 43 "BigInt64Array", 44 "BigUint64Array" 45 ], 46 "author": "Jordan Harband <ljharb@gmail.com>", 47 "license": "MIT", 48 "bugs": { 49 "url": "https://github.com/ljharb/possible-typed-array-names/issues" 50 }, 51 "homepage": "https://github.com/ljharb/possible-typed-array-names#readme", 52 "devDependencies": { 53 "@ljharb/eslint-config": "^21.1.0", 54 "@types/tape": "^5.6.4", 55 "aud": "^2.0.4", 56 "auto-changelog": "^2.4.0", 57 "eclint": "^2.8.1", 58 "eslint": "=8.8.0", 59 "evalmd": "^0.0.19", 60 "in-publish": "^2.0.1", 61 "npmignore": "^0.3.1", 62 "nyc": "^10.3.2", 63 "safe-publish-latest": "^2.0.0", 64 "tape": "^5.7.5", 65 "typescript": "next" 66 }, 67 "auto-changelog": { 68 "output": "CHANGELOG.md", 69 "template": "keepachangelog", 70 "unreleased": false, 71 "commitLimit": false, 72 "backfillLimit": false, 73 "hideCredit": true 74 }, 75 "publishConfig": { 76 "ignore": [ 77 ".github/workflows" 78 ] 79 }, 80 "engines": { 81 "node": ">= 0.4" 82 } 2 "_from": "possible-typed-array-names@^1.0.0", 3 "_id": "possible-typed-array-names@1.0.0", 4 "_inBundle": false, 5 "_integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", 6 "_location": "/possible-typed-array-names", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "possible-typed-array-names@^1.0.0", 12 "name": "possible-typed-array-names", 13 "escapedName": "possible-typed-array-names", 14 "rawSpec": "^1.0.0", 15 "saveSpec": null, 16 "fetchSpec": "^1.0.0" 17 }, 18 "_requiredBy": [ 19 "/available-typed-arrays", 20 "/typed-array-length" 21 ], 22 "_resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", 23 "_shasum": "89bb63c6fada2c3e90adc4a647beeeb39cc7bf8f", 24 "_spec": "possible-typed-array-names@^1.0.0", 25 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/available-typed-arrays", 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/ljharb/possible-typed-array-names/issues" 40 }, 41 "bundleDependencies": false, 42 "deprecated": false, 43 "description": "A simple list of possible Typed Array names.", 44 "devDependencies": { 45 "@ljharb/eslint-config": "^21.1.0", 46 "@types/tape": "^5.6.4", 47 "aud": "^2.0.4", 48 "auto-changelog": "^2.4.0", 49 "eclint": "^2.8.1", 50 "eslint": "=8.8.0", 51 "evalmd": "^0.0.19", 52 "in-publish": "^2.0.1", 53 "npmignore": "^0.3.1", 54 "nyc": "^10.3.2", 55 "safe-publish-latest": "^2.0.0", 56 "tape": "^5.7.5", 57 "typescript": "next" 58 }, 59 "engines": { 60 "node": ">= 0.4" 61 }, 62 "exports": { 63 ".": "./index.js", 64 "./package.json": "./package.json" 65 }, 66 "homepage": "https://github.com/ljharb/possible-typed-array-names#readme", 67 "keywords": [ 68 "typed", 69 "array", 70 "typedarray", 71 "Float32Array", 72 "Float64Array", 73 "Int8Array", 74 "Int16Array", 75 "Int32Array", 76 "Uint8Array", 77 "Uint8ClampedArray", 78 "Uint16Array", 79 "Uint32Array", 80 "BigInt64Array", 81 "BigUint64Array" 82 ], 83 "license": "MIT", 84 "main": "index.js", 85 "name": "possible-typed-array-names", 86 "publishConfig": { 87 "ignore": [ 88 ".github/workflows" 89 ] 90 }, 91 "repository": { 92 "type": "git", 93 "url": "git+https://github.com/ljharb/possible-typed-array-names.git" 94 }, 95 "scripts": { 96 "lint": "eslint --ext=js,mjs .", 97 "postlint": "tsc -p . && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)", 98 "posttest": "aud --production", 99 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", 100 "prelint": "evalmd README.md", 101 "prepack": "npmignore --auto --commentLines=autogenerated", 102 "prepublish": "not-in-publish || npm run prepublishOnly", 103 "prepublishOnly": "safe-publish-latest", 104 "pretest": "npm run lint", 105 "test": "npm run tests-only", 106 "tests-only": "nyc tape 'test/**/*.js'", 107 "version": "auto-changelog && git add CHANGELOG.md" 108 }, 109 "sideEffects": false, 110 "types": "./index.d.ts", 111 "version": "1.0.0" 83 112 }
Note:
See TracChangeset
for help on using the changeset viewer.