-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.39 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@docstream/express-proxy",
"version": "1.0.0",
"description": "Proxy middleware for Express JS",
"engines": {
"node": ">=14.0.0"
},
"main": "index.js",
"scripts": {
"test": "npm -s run mocha && npm run -s lint",
"test:debug": "mocha debug -R spec test --recursive --exit",
"coverage": "nyc npm run test",
"mocha": "mocha -R spec test --recursive --exit",
"lint": "eslint .",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/docstream/express-proxy.git"
},
"keywords": [
"express-http"
],
"author": {
"name": "Ricky Miller",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "6.0.2",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"body-parser": "^1.17.2",
"chai": "^4.1.2",
"cookie-parser": "^1.4.3",
"eslint": "^8.0.0",
"express": "^4.15.4",
"mocha": "^10.2.0",
"nock": "13.3.0",
"nyc": "15.1.0",
"semantic-release": "21.0.7",
"supertest": "^6.3.3"
},
"dependencies": {
"debug": "^4.3.4",
"es6-promise": "^4.1.1",
"raw-body": "^2.3.0"
},
"contributors": [
{
"name": "Liam Bennett"
},
{
"name": "eldereal",
"url": "https://github.com/eldereal"
},
{
"name": "Saulius Menkevičius",
"url": "https://github.com/razzmatazz"
},
{
"name": "Jérémy Lal",
"email": "[email protected]"
},
{
"name": "Wei Gao",
"email": "[email protected]"
},
{
"name": "Nik Krimm",
"url": "https://github.com/monkpow"
},
{
"name": "Ricky Miller",
"url": "https://github.com/richardkazuomiller"
},
{
"name": "Rune Aspvik",
"email": "[email protected]"
}
],
"release": {
"branches": [
"main",
{
"name": "next",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"package-lock.json"
]
}
],
"@semantic-release/github"
]
},
"publishConfig": {
"access": "private"
}
}