-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
111 lines (111 loc) · 3.14 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": "authmosphere",
"version": "5.0.2",
"description": "authmosphere is a library to support OAuth2 workflows in JavaScript projects.",
"main": "./lib/src/index.js",
"typings": "./lib/src/index.d.ts",
"license": "MIT",
"keywords": [
"zalando",
"oauth2",
"express",
"node",
"typescript"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"lib",
"README.md",
"LICENSE",
"package.json"
],
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@types/express": "4.17.21",
"http-status": "1.7.4",
"nock": "13.5.4",
"node-fetch": "2.7.0",
"uuid": "10.0.0"
},
"devDependencies": {
"@types/chai": "4.3.16",
"@types/chai-as-promised": "7.1.8",
"@types/mocha": "10.0.6",
"@types/node": "20.14.7",
"@types/node-fetch": "2.6.11",
"@types/sinon-chai": "3.2.12",
"@types/sinonjs__fake-timers": "8.1.5",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "7.13.1",
"@typescript-eslint/parser": "7.13.1",
"c8": "10.1.2",
"chai": "4.4.1",
"chai-as-promised": "7.1.2",
"coveralls-next": "4.2.1",
"eslint": "8.57.0",
"eslint-plugin-chai-friendly": "1.0.0",
"eslint-plugin-mocha": "10.4.3",
"eslint-plugin-node": "11.1.0",
"express": "4.19.2",
"mocha": "10.4.0",
"sinon": "18.0.0",
"sinon-chai": "3.7.0",
"typescript": "5.5.2"
},
"scripts": {
"test": "npm run build && mocha lib/test lib/integration-test --recursive",
"unit-test": "npm run build && mocha lib/test --recursive",
"integration-test": "npm run build && mocha lib/integration-test --recursive",
"test:debug": "npm run build && mocha lib/test lib/integration-test --recursive --inspect-brk",
"test:coverage": "c8 npm run test",
"coverage": "npm run test:coverage && c8 report --reporter=text-lcov | coveralls -v",
"lint": "eslint -c .eslintrc.js --ext .ts ./src/ ./test/",
"lint:fix": "eslint --fix -c .eslintrc.js --ext .ts ./src/ ./test/",
"build": "rm -rf lib && tsc",
"prepublishOnly": "npm run build && npm run test && npm run lint",
"gh-ci-action": "npm run test && npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/zalando-incubator/authmosphere.git"
},
"maintainers": [
"Jörg Dotzki <[email protected]>",
"Markus Görlich <[email protected]>",
"Bastian Sieker <[email protected]>"
],
"contributors": [
{
"name": "Jörg Dotzki",
"email": "[email protected]",
"url": "https://github.com/ISO50"
},
{
"name": "Alexander Dellagi",
"email": "[email protected]"
},
{
"name": "Bastian Sieker",
"email": "[email protected]",
"url": "https://github.com/bzums"
},
{
"name": "Markus Görlich",
"email": "[email protected]",
"url": "https://github.com/retro64"
},
{
"name": "Matthias Achatz",
"email": "[email protected]"
},
{
"name": "André Waltert",
"email": "[email protected]",
"url": "https://github.com/awaltert"
}
]
}