Changeset 79a0317 for imaps-frontend/node_modules/@jridgewell/set-array
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/@jridgewell/set-array/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "@jridgewell/set-array", 3 "version": "1.2.1", 2 "_from": "@jridgewell/set-array@^1.2.1", 3 "_id": "@jridgewell/set-array@1.2.1", 4 "_inBundle": false, 5 "_integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 6 "_location": "/@jridgewell/set-array", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "@jridgewell/set-array@^1.2.1", 12 "name": "@jridgewell/set-array", 13 "escapedName": "@jridgewell%2fset-array", 14 "scope": "@jridgewell", 15 "rawSpec": "^1.2.1", 16 "saveSpec": null, 17 "fetchSpec": "^1.2.1" 18 }, 19 "_requiredBy": [ 20 "/@jridgewell/gen-mapping" 21 ], 22 "_resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 23 "_shasum": "558fb6472ed16a4c850b889530e6b36438c49280", 24 "_spec": "@jridgewell/set-array@^1.2.1", 25 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/@jridgewell/gen-mapping", 26 "author": { 27 "name": "Justin Ridgewell", 28 "email": "justin@ridgewell.name" 29 }, 30 "bugs": { 31 "url": "https://github.com/jridgewell/set-array/issues" 32 }, 33 "bundleDependencies": false, 34 "deprecated": false, 4 35 "description": "Like a Set, but provides the index of the `key` in the backing array", 5 "keywords": [], 6 "author": "Justin Ridgewell <justin@ridgewell.name>", 7 "license": "MIT", 8 "repository": "https://github.com/jridgewell/set-array", 9 "main": "dist/set-array.umd.js", 10 "module": "dist/set-array.mjs", 11 "typings": "dist/types/set-array.d.ts", 36 "devDependencies": { 37 "@rollup/plugin-typescript": "8.3.0", 38 "@types/mocha": "9.1.1", 39 "@types/node": "17.0.29", 40 "@typescript-eslint/eslint-plugin": "5.10.0", 41 "@typescript-eslint/parser": "5.10.0", 42 "c8": "7.11.0", 43 "eslint": "8.7.0", 44 "eslint-config-prettier": "8.3.0", 45 "mocha": "9.2.0", 46 "npm-run-all": "4.1.5", 47 "prettier": "2.5.1", 48 "rollup": "2.66.0", 49 "tsx": "4.7.1", 50 "typescript": "4.5.5" 51 }, 52 "engines": { 53 "node": ">=6.0.0" 54 }, 12 55 "exports": { 13 56 ".": [ … … 25 68 "dist" 26 69 ], 27 "engines": { 28 "node": ">=6.0.0" 70 "homepage": "https://github.com/jridgewell/set-array#readme", 71 "keywords": [], 72 "license": "MIT", 73 "main": "dist/set-array.umd.js", 74 "module": "dist/set-array.mjs", 75 "name": "@jridgewell/set-array", 76 "repository": { 77 "type": "git", 78 "url": "git+https://github.com/jridgewell/set-array.git" 29 79 }, 30 80 "scripts": { 31 "prebuild": "rm -rf dist",32 81 "build": "run-s -n build:*", 33 82 "build:rollup": "rollup -c rollup.config.js", … … 36 85 "lint:prettier": "npm run test:lint:prettier -- --write", 37 86 "lint:ts": "npm run test:lint:ts -- --fix", 87 "prebuild": "rm -rf dist", 88 "prepublishOnly": "npm run preversion", 89 "preversion": "run-s test build", 38 90 "test": "run-s -n test:lint test:only", 91 "test:coverage": "c8 mocha", 39 92 "test:debug": "mocha --inspect-brk", 40 93 "test:lint": "run-s -n test:lint:*", … … 42 95 "test:lint:ts": "eslint '{src,test}/**/*.ts'", 43 96 "test:only": "mocha", 44 "test:coverage": "c8 mocha", 45 "test:watch": "mocha --watch", 46 "prepublishOnly": "npm run preversion", 47 "preversion": "run-s test build" 97 "test:watch": "mocha --watch" 48 98 }, 49 "devDependencies": { 50 "@rollup/plugin-typescript": "8.3.0", 51 "@types/mocha": "9.1.1", 52 "@types/node": "17.0.29", 53 "@typescript-eslint/eslint-plugin": "5.10.0", 54 "@typescript-eslint/parser": "5.10.0", 55 "c8": "7.11.0", 56 "eslint": "8.7.0", 57 "eslint-config-prettier": "8.3.0", 58 "mocha": "9.2.0", 59 "npm-run-all": "4.1.5", 60 "prettier": "2.5.1", 61 "rollup": "2.66.0", 62 "tsx": "4.7.1", 63 "typescript": "4.5.5" 64 } 99 "typings": "dist/types/set-array.d.ts", 100 "version": "1.2.1" 65 101 }
Note:
See TracChangeset
for help on using the changeset viewer.