-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.6 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.6 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
{
"name": "verdaccio-github-oauth-ui",
"version": "2.2.0",
"keywords": [
"github",
"login",
"npm",
"oauth",
"package",
"private",
"registry",
"verdaccio"
],
"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",
"files": [
"dist"
],
"main": "dist/server.js",
"bin": {
"verdaccio-github-oauth-ui": "dist/cli.js"
},
"scripts": {
"build": "bash run build",
"lint": "bash run lint",
"prepack": "bash run clean && bash run build",
"start": "verdaccio -c verdaccio.yaml",
"test": "jest",
"test:cli": "bash run oauth-cli-test",
"test:coverage": "jest --collectCoverage && codecov",
"test:manual": "yarn update && yarn start",
"test:watch": "jest --watch",
"test:whoami": "bash run whoami",
"update": "yarn prepack && bash run link",
"watch": "nodemon --watch src --ext ts,css --exec \"yarn update\""
},
"dependencies": {
"chalk": "^2.4.2",
"express": "^4.17.0",
"global-agent": "^2.1.5",
"got": "^9.6.0",
"memory-cache": "^0.2.0",
"minimist": "^1.2.0",
"open": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@n4bb12/config-tslint": "^1.4.1",
"@types/express": "^4.16.1",
"@types/got": "^9.4.1",
"@types/jest": "^24.0.21",
"@types/lodash": "^4.14.123",
"@types/node": "^12.0.4",
"@verdaccio/types": "^8.3.0",
"babel-jest": "^24.9.0",
"codecov": "^3.6.1",
"core-js": "^3.3.4",
"jest": "^24.9.0",
"lodash": "4.17.15",
"nodemon": "^1.18.10",
"release-it": "^12.2.2",
"rollup": "^1.25.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.4",
"verdaccio": "^4.3.4",
"verdaccio-htpasswd": "^8.2.0"
},
"peerDependencies": {
"lodash": "4",
"verdaccio": "3 || 4"
},
"engines": {
"node": ">=10"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"$schema": "http://json.schemastore.org/package"
}