forked from n4bb12/verdaccio-github-oauth-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.1 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "verdaccio-gitlab-oauth",
"version": "1.0.4",
"keywords": [
"gitlab",
"login",
"npm",
"oauth",
"package",
"private",
"registry",
"verdaccio"
],
"homepage": "https://github.com/bizneo/verdaccio-gitlab-oauth/blob/master/README.md",
"bugs": "https://github.com/bizneo/verdaccio-gitlab-oauth/issues",
"repository": "github:bizneo/verdaccio-gitlab-oauth",
"license": "MIT",
"author": "Oscar de Arriba",
"files": [
"dist"
],
"main": "dist/server.js",
"scripts": {
"build": "bash run build",
"lint": "bash run lint",
"prepack": "bash run clear && bash run build",
"start": "bash run start",
"test": "yarn update && yarn start",
"update": "bash run update",
"watch": "bash run watch"
},
"dependencies": {
"chalk": "^2.4.2",
"global-agent": "^2.1.5",
"got": "^9.6.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/lodash": "^4.14.123",
"@types/node": "^12.0.4",
"@verdaccio/types": "^8.3.0",
"core-js": "^3.3.4",
"express": "^4.17.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": {
"express": "4",
"lodash": "4",
"verdaccio": "3 || 4"
},
"engines": {
"node": ">=10"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"$schema": "http://json.schemastore.org/package"
}