[6a3a178] | 1 | {
|
---|
| 2 | "name": "npm-registry-fetch",
|
---|
| 3 | "version": "11.0.0",
|
---|
| 4 | "description": "Fetch-based http client for use with npm registry APIs",
|
---|
| 5 | "main": "index.js",
|
---|
| 6 | "files": [
|
---|
| 7 | "*.js"
|
---|
| 8 | ],
|
---|
| 9 | "scripts": {
|
---|
| 10 | "eslint": "eslint",
|
---|
| 11 | "lint": "npm run npmclilint -- \"*.*js\" \"test/**/*.*js\"",
|
---|
| 12 | "lintfix": "npm run lint -- --fix",
|
---|
| 13 | "prepublishOnly": "git push origin --follow-tags",
|
---|
| 14 | "preversion": "npm test",
|
---|
| 15 | "postversion": "npm publish",
|
---|
| 16 | "test": "tap",
|
---|
| 17 | "posttest": "npm run lint --",
|
---|
| 18 | "npmclilint": "npmcli-lint",
|
---|
| 19 | "postsnap": "npm run lintfix --"
|
---|
| 20 | },
|
---|
| 21 | "repository": "https://github.com/npm/npm-registry-fetch",
|
---|
| 22 | "keywords": [
|
---|
| 23 | "npm",
|
---|
| 24 | "registry",
|
---|
| 25 | "fetch"
|
---|
| 26 | ],
|
---|
| 27 | "author": {
|
---|
| 28 | "name": "Kat Marchán",
|
---|
| 29 | "email": "kzm@sykosomatic.org",
|
---|
| 30 | "twitter": "maybekatz"
|
---|
| 31 | },
|
---|
| 32 | "license": "ISC",
|
---|
| 33 | "dependencies": {
|
---|
| 34 | "make-fetch-happen": "^9.0.1",
|
---|
| 35 | "minipass": "^3.1.3",
|
---|
| 36 | "minipass-fetch": "^1.3.0",
|
---|
| 37 | "minipass-json-stream": "^1.0.1",
|
---|
| 38 | "minizlib": "^2.0.0",
|
---|
| 39 | "npm-package-arg": "^8.0.0"
|
---|
| 40 | },
|
---|
| 41 | "devDependencies": {
|
---|
| 42 | "@npmcli/lint": "^1.0.1",
|
---|
| 43 | "cacache": "^15.0.0",
|
---|
| 44 | "nock": "^13.1.0",
|
---|
| 45 | "npmlog": "^4.1.2",
|
---|
| 46 | "require-inject": "^1.4.4",
|
---|
| 47 | "ssri": "^8.0.0",
|
---|
| 48 | "tap": "^15.0.4"
|
---|
| 49 | },
|
---|
| 50 | "tap": {
|
---|
| 51 | "check-coverage": true,
|
---|
| 52 | "test-ignore": "test[\\\\/](util|cache)[\\\\/]"
|
---|
| 53 | },
|
---|
| 54 | "engines": {
|
---|
| 55 | "node": ">=10"
|
---|
| 56 | }
|
---|
| 57 | }
|
---|