-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.41 KB
/
package.json
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
{
"name": "@pnpm/registry-mock",
"version": "3.48.0",
"description": "Mock the npm registry",
"main": "dist/index.js",
"bin": "dist/bin/pnpm-registry-mock.js",
"files": [
"dist",
"registry"
],
"scripts": {
"registry": "verdaccio -c registry/prepublish-config.yaml",
"prebuild": "rimraf registry/storage-cache/ && rimraf registry/storage/",
"publish-packages": "sh packages/publish-all.sh",
"build": "pnpm run prebuild && tsc && npm-run-all -p -r registry publish-packages",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnpm/pnpm-registry-mock.git"
},
"keywords": [
"pnpm",
"verdaccio",
"mock",
"registry"
],
"author": "Zoltan Kochan",
"license": "MIT",
"engines": {
"node": ">=10.13"
},
"bugs": {
"url": "https://github.com/pnpm/pnpm-registry-mock/issues"
},
"homepage": "https://github.com/pnpm/pnpm-registry-mock#readme",
"dependencies": {
"anonymous-npm-registry-client": "^0.2.0",
"execa": "^5.1.1",
"fs-extra": "^11.1.1",
"read-yaml-file": "^2.1.0",
"rimraf": "^3.0.2",
"tempy": "^1.0.1",
"verdaccio": "^5.10.1",
"write-yaml-file": "^4.2.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/node": "^17.0.31",
"npm": "^8.9.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.6.4",
"write-json-file": "^4.3.0"
}
}