forked from n4bb12/verdaccio-github-oauth-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.27 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.27 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"$schema": "http://json.schemastore.org/package",
"name": "verdaccio-github-oauth-ui",
"version": "3.2.4",
"keywords": [
"authentication",
"github",
"login",
"npm",
"oauth",
"package",
"private",
"registry",
"verdaccio",
"verdaccio-auth",
"verdaccio-auth-plugin",
"verdaccio-plugin"
],
"homepage": "https://github.com/n4bb12/verdaccio-github-oauth-ui/blob/master/README.md",
"bugs": "https://github.com/n4bb12/verdaccio-github-oauth-ui/issues",
"repository": "github:n4bb12/verdaccio-github-oauth-ui",
"license": "MIT",
"author": "Abraham Schilling",
"main": "dist/server/index.js",
"bin": {
"verdaccio-github-oauth-ui": "dist/cli/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "bash run build",
"clean": "bash run clean",
"dev": "yarn update && yarn start",
"fix": "yarn format && yarn typecheck",
"format": "prettier --write \"**/*.{ts,js,css,scss,html,json}\"",
"format:check": "prettier --check \"**/*.{ts,js,css,scss,html,json}\"",
"prepack": "bash run clean && bash run build",
"start": "verdaccio -c verdaccio.yaml",
"test": "vitest --watch false",
"test:cli": "bash run test-cli",
"test:coverage": "vitest --coverage",
"test:docker": "bash run test-docker",
"test:publish": "bash run test-publish",
"test:whoami": "bash run test-whoami",
"typecheck": "bash run typecheck",
"update": "yarn prepack && bash run copy",
"watch": "nodemon --watch src --ext ts,css --exec \"yarn update\""
},
"dependencies": {
"@octokit/oauth-methods": "^1.2.6",
"@octokit/request": "^5.6.3",
"chalk": "^4.1.1",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"global-agent": "^3.0.0",
"lodash": "^4.17.21",
"memory-cache": "^0.2.0",
"minimist": "^1.2.0",
"octokit": "^1.7.1",
"open": "^8.0.7",
"openid-client": "^5.1.3",
"ow": "^0.28.1",
"query-string": "^7.1.1"
},
"devDependencies": {
"@parcel/config-default": "^2.2.1",
"@parcel/transformer-typescript-tsc": "^2.2.1",
"@types/express": "^4.17.9",
"@types/global-agent": "^2.1.0",
"@types/lodash": "^4.14.178",
"@types/memory-cache": "^0.2.2",
"@types/minimist": "^1.2.1",
"@types/node": "^16.11.9",
"@types/query-string": "^6.3.0",
"@verdaccio/types": "^10.2.2",
"c8": "^7.11.0",
"core-js": "^3.21.0",
"nodemon": "^2.0.6",
"parcel": "^2.2.1",
"prettier": "^2.5.1",
"release-it": "^14.12.4",
"timekeeper": "^2.2.0",
"type-fest": "^2.11.1",
"typescript": "^4.5.5",
"verdaccio": "^5.5.2",
"verdaccio-htpasswd": "^10.1.0",
"vite": "^2.7.13",
"vitest": "^0.2.7"
},
"peerDependencies": {
"verdaccio": ">=5"
},
"engines": {
"node": "^14||^16"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"targets": {
"browser": {
"source": "src/client/verdaccio-5.ts",
"context": "browser",
"includeNodeModules": true
},
"server": {
"source": "src/server/index.ts",
"context": "node",
"outputFormat": "commonjs",
"optimize": false,
"isLibrary": true
},
"cli": {
"source": "src/cli/index.ts",
"context": "node",
"outputFormat": "commonjs",
"optimize": false
}
}
}