1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
{
"name": "npm-registry-fetch",
"version": "10.1.2",
"description": "Fetch-based http client for use with npm registry APIs",
"main": "index.js",
"files": [
"*.js"
],
"scripts": {
"eslint": "eslint",
"lint": "npm run eslint -- *.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"
},
"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": {
"lru-cache": "^6.0.0",
"make-fetch-happen": "^8.0.9",
"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": {
"cacache": "^15.0.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mkdirp": "^0.5.1",
"nock": "^11.7.0",
"npmlog": "^4.1.2",
"require-inject": "^1.4.4",
"rimraf": "^2.6.2",
"ssri": "^8.0.0",
"tap": "^15.0.4"
},
"tap": {
"check-coverage": true,
"test-ignore": "test[\\\\/](util|cache)[\\\\/]"
},
"engines": {
"node": ">=10"
}
}
|