forked from bufferoverflow/verdaccio-gitlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.59 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "verdaccio-gitlab",
"author": {
"name": "Roger Meier",
"email": "roger@bufferoverflow.ch"
},
"scripts": {
"flow": "flow check",
"commitmsg": "commitlint -e $GIT_PARAMS",
"license": "license-checker --onlyAllow 'Apache-2.0; Apache License, Version 2.0; BSD; BSD-2-Clause; BSD-3-Clause; ISC; MIT; Unlicense; WTFPL; CC-BY-3.0; CC0-1.0' --production",
"lint": "yarn flow && eslint . && eclint check $(git ls-files) && markdownlint README.md",
"prepublish": "in-publish && yarn lint && yarn code:build || not-in-publish",
"release:major": "changelog -M && git commit -a -m 'docs: updated CHANGELOG.md' && yarn version --major && git push origin && git push origin --tags",
"release:minor": "changelog -m && git commit -a -m 'docs: updated CHANGELOG.md' && yarn version --minor && git push origin && git push origin --tags",
"release:patch": "changelog -p && git commit -a -m 'docs: updated CHANGELOG.md' && yarn version --patch && git push origin && git push origin --tags",
"start": "yarn code:build && cross-env NODE_PATH=$NODE_PATH:.. BABEL_ENV=registry babel-node build/verdaccio.js",
"code:build": "cross-env BABEL_ENV=registry babel src/ --out-dir build/ --copy-files --ignore ___tests___ --source-maps",
"code:docker-build": "cross-env BABEL_ENV=registry-docker babel src/ --out-dir build/ --copy-files --ignore ___tests___ --source-maps",
"build:docker": "docker build -t verdaccio-gitlab . --no-cache",
"test": "yarn test:unit",
"test:unit": "cross-env BABEL_ENV=test TZ=UTC jest --config ./test/jest.config.unit.js --maxWorkers 2",
"test:functional": "cross-env BABEL_ENV=test TZ=UTC jest --config ./test/jest.config.functional.js",
"test:all": "yarn test && yarn test:functional"
},
"main": "build/index.js",
"version": "2.2.0",
"description": "private npm registry (Verdaccio) using gitlab-ce as authentication and authorization provider",
"keywords": [
"sinopia",
"verdaccio",
"gitlab",
"auth",
"npm",
"registry",
"npm-registry"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bufferoverflow/verdaccio-gitlab.git"
},
"homepage": "https://github.com/bufferoverflow/verdaccio-gitlab",
"bugs": {
"url": "https://github.com/bufferoverflow/verdaccio-gitlab/issues"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"gitlab": "3.5.1",
"global-tunnel-ng": "2.5.3",
"http-errors": "1.6.3",
"node-cache": "4.2.0",
"verdaccio": "3.8.6"
},
"devDependencies": {
"@commitlint/cli": "7.0.0",
"@commitlint/config-conventional": "7.0.1",
"@commitlint/travis-cli": "7.0.0",
"@verdaccio/types": "3.5.1",
"babel-cli": "6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "8.2.6",
"babel-jest": "^23.4.2",
"babel-preset-env": "1.7.0",
"babel-preset-flow": "6.23.0",
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"cross-env": "^5.2.0",
"eclint": "2.8.0",
"eslint": "5.2.0",
"eslint-plugin-flowtype": "2.50.0",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-jest": "^21.21.0",
"express": "^4.16.3",
"flow-bin": "0.77.0",
"flow-runtime": "0.17.0",
"generate-changelog": "1.7.1",
"http-status": "^1.2.0",
"husky": "0.14.3",
"in-publish": "2.0.0",
"jest": "^23.5.0",
"jest-environment-node": "^23.4.0",
"license-checker": "20.1.0",
"lodash": "^4.17.10",
"markdownlint-cli": "0.11.0",
"repolinter": "0.7.0",
"request": "^2.88.0",
"rimraf": "^2.6.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}