forked from bufferoverflow/verdaccio-gitlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.71 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
{
"name": "verdaccio-gitlab",
"author": {
"name": "Roger Meier",
"email": "[email protected]"
},
"scripts": {
"build": "babel src/ --out-dir lib/ --copy-files --ignore ___tests___ --source-maps",
"build:docker": "docker build -t verdaccio-gitlab . --no-cache",
"flow": "flow",
"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": "flow && eslint . && eclint check $(git ls-files) && markdownlint README.md",
"prepublish": "in-publish && yarn lint && yarn 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 build && NODE_PATH=$NODE_PATH:.. node lib/verdaccio.js"
},
"main": "lib/index.js",
"version": "1.0.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": ">=6.12.0"
},
"dependencies": {
"gitlab": "3.5.1",
"global-tunnel-ng": "2.5.3",
"http-errors": "1.6.3",
"node-cache": "4.2.0",
"verdaccio": "3.3.0"
},
"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-eslint": "8.2.6",
"babel-preset-env": "1.7.0",
"babel-preset-flow": "6.23.0",
"eclint": "2.8.0",
"eslint": "5.2.0",
"eslint-plugin-flowtype": "2.50.0",
"eslint-plugin-import": "2.13.0",
"flow-bin": "0.77.0",
"flow-runtime": "0.17.0",
"generate-changelog": "1.7.1",
"husky": "0.14.3",
"in-publish": "2.0.0",
"license-checker": "20.1.0",
"markdownlint-cli": "0.11.0",
"repolinter": "0.7.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}