123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {
- "name": "npm-registry-fetch",
- "version": "11.0.0",
- "description": "Fetch-based http client for use with npm registry APIs",
- "main": "index.js",
- "files": [
- "*.js"
- ],
- "scripts": {
- "eslint": "eslint",
- "lint": "npm run npmclilint -- \"*.*js\" \"test/**/*.*js\"",
- "lintfix": "npm run lint -- --fix",
- "prepublishOnly": "git push origin --follow-tags",
- "preversion": "npm test",
- "postversion": "npm publish",
- "test": "tap",
- "posttest": "npm run lint --",
- "npmclilint": "npmcli-lint",
- "postsnap": "npm run lintfix --"
- },
- "repository": "https://github.com/npm/npm-registry-fetch",
- "keywords": [
- "npm",
- "registry",
- "fetch"
- ],
- "author": {
- "name": "Kat Marchán",
- "email": "kzm@sykosomatic.org",
- "twitter": "maybekatz"
- },
- "license": "ISC",
- "dependencies": {
- "make-fetch-happen": "^9.0.1",
- "minipass": "^3.1.3",
- "minipass-fetch": "^1.3.0",
- "minipass-json-stream": "^1.0.1",
- "minizlib": "^2.0.0",
- "npm-package-arg": "^8.0.0"
- },
- "devDependencies": {
- "@npmcli/lint": "^1.0.1",
- "cacache": "^15.0.0",
- "nock": "^13.1.0",
- "npmlog": "^4.1.2",
- "require-inject": "^1.4.4",
- "ssri": "^8.0.0",
- "tap": "^15.0.4"
- },
- "tap": {
- "check-coverage": true,
- "test-ignore": "test[\\\\/](util|cache)[\\\\/]"
- },
- "engines": {
- "node": ">=10"
- }
- }
|