Changeset 79a0317 for imaps-frontend/node_modules/which/package.json
- Timestamp:
- 01/21/25 03:08:24 (3 days ago)
- Branches:
- main
- Parents:
- 0c6b92a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/which/package.json
r0c6b92a r79a0317 1 1 { 2 "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)", 3 "name": "which", 4 "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", 5 "version": "2.0.2", 6 "repository": { 7 "type": "git", 8 "url": "git://github.com/isaacs/node-which.git" 2 "_from": "which@^2.0.1", 3 "_id": "which@2.0.2", 4 "_inBundle": false, 5 "_integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 6 "_location": "/which", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "which@^2.0.1", 12 "name": "which", 13 "escapedName": "which", 14 "rawSpec": "^2.0.1", 15 "saveSpec": null, 16 "fetchSpec": "^2.0.1" 9 17 }, 10 "main": "which.js", 18 "_requiredBy": [ 19 "/cross-spawn" 20 ], 21 "_resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 22 "_shasum": "7c6a8dd0a636a0327e10b59c9286eee93f3f51b1", 23 "_spec": "which@^2.0.1", 24 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/cross-spawn", 25 "author": { 26 "name": "Isaac Z. Schlueter", 27 "email": "i@izs.me", 28 "url": "http://blog.izs.me" 29 }, 11 30 "bin": { 12 "node-which": " ./bin/node-which"31 "node-which": "bin/node-which" 13 32 }, 14 "license": "ISC", 33 "bugs": { 34 "url": "https://github.com/isaacs/node-which/issues" 35 }, 36 "bundleDependencies": false, 15 37 "dependencies": { 16 38 "isexe": "^2.0.0" 17 39 }, 40 "deprecated": false, 41 "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", 18 42 "devDependencies": { 19 43 "mkdirp": "^0.5.0", … … 21 45 "tap": "^14.6.9" 22 46 }, 23 "scripts": { 24 "test": "tap", 25 "preversion": "npm test", 26 "postversion": "npm publish", 27 "prepublish": "npm run changelog", 28 "prechangelog": "bash gen-changelog.sh", 29 "changelog": "git add CHANGELOG.md", 30 "postchangelog": "git commit -m 'update changelog - '${npm_package_version}", 31 "postpublish": "git push origin --follow-tags" 47 "engines": { 48 "node": ">= 8" 32 49 }, 33 50 "files": [ … … 35 52 "bin/node-which" 36 53 ], 54 "homepage": "https://github.com/isaacs/node-which#readme", 55 "license": "ISC", 56 "main": "which.js", 57 "name": "which", 58 "repository": { 59 "type": "git", 60 "url": "git://github.com/isaacs/node-which.git" 61 }, 62 "scripts": { 63 "changelog": "git add CHANGELOG.md", 64 "postchangelog": "git commit -m 'update changelog - '${npm_package_version}", 65 "postpublish": "git push origin --follow-tags", 66 "postversion": "npm publish", 67 "prechangelog": "bash gen-changelog.sh", 68 "prepublish": "npm run changelog", 69 "preversion": "npm test", 70 "test": "tap" 71 }, 37 72 "tap": { 38 73 "check-coverage": true 39 74 }, 40 "engines": { 41 "node": ">= 8" 42 } 75 "version": "2.0.2" 43 76 }
Note:
See TracChangeset
for help on using the changeset viewer.