This repository was archived by the owner on Sep 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.97 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.97 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
{
"name": "@adobe/git-server",
"version": "1.3.29",
"description": "serve a git repository over http(s)",
"main": "index.js",
"scripts": {
"start": "node ./index.js",
"test": "nyc mocha",
"test-ci": "circleci tests glob 'test/test*.js' | circleci tests split --split-by=timings | xargs nyc --reporter=text --reporter=lcov mocha -R mocha-junit-reporter && codecov",
"test-ci-win": ".\\node_modules\\.bin\\mocha --reporter xunit test --reporter-options output=junit/test.xml",
"lint": "./node_modules/.bin/eslint .",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/git-server.git"
},
"license": "Apache-2.0",
"dependencies": {
"@adobe/helix-log": "5.0.5",
"archiver": "5.3.0",
"async": "3.2.1",
"escape-html": "1.0.3",
"express": "4.17.1",
"fs-extra": "10.0.0",
"git-http-backend": "1.0.2",
"http-terminator": "3.0.3",
"ignore": "5.1.8",
"isomorphic-git": "1.10.0",
"klaw": "4.0.1",
"lodash": "4.17.21",
"mime": "2.5.2",
"morgan": "1.10.0",
"pem": "1.14.4"
},
"devDependencies": {
"@adobe/helix-fetch": "2.4.2",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "10.0.0",
"@semantic-release/github": "8.0.0",
"codecov": "3.8.3",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.24.2",
"minimist": "1.2.5",
"mocha": "9.1.1",
"mocha-junit-reporter": "2.0.0",
"nyc": "15.1.0",
"semantic-release": "18.0.0",
"shelljs": "0.8.4",
"tcp-port-used": "1.0.2",
"tmp": "0.2.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"bugs": {
"url": "https://github.com/adobe/git-server/issues"
},
"homepage": "https://github.com/adobe/git-server#readme"
}