-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.1 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
{
"private": true,
"name": "nginx-oidc-njs",
"description": "OpenID Connect and OAuth 2.0 module for NGINX written in njs.",
"author": "Jakub Jirutka <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/jirutka/nginx-oidc-njs",
"main": "dist/nginx-oidc.njs",
"files": [
"conf",
"dist",
"src"
],
"scripts": {
"build": "rollup -c --environment NODE_ENV:production",
"clean": "rm -f dist lib node_modules/.cache",
"lint": "tsc -b",
"start": "run-p watch start-nginx",
"start-nginx": "start-nginx --version 1.22.x --port 8090 --watch dist/ integration-tests/nginx.conf",
"test": "rollup -c && mocha",
"test-only": "mocha",
"watch": "rollup -c --watch --no-watch.clearScreen"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-transform-modules-commonjs": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@babel/register": "^7.21.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@types/babel__core": "~7.20.0",
"@types/body-parser": "~1.19.2",
"@types/express": "~4.17.17",
"@types/http-errors": "~2.0.1",
"@types/mocha": "~10.0.1",
"@types/power-assert": "~1.5.3",
"@types/rollup-plugin-add-git-msg": "~1.1.1",
"@types/tough-cookie": "~4.0.2",
"@types/uuid": "~9.0.1",
"anylogger-loglevel": "^1.0.0",
"babel-plugin-const-enum": "^1.2.0",
"babel-plugin-espower": "^3.0.1",
"babel-preset-njs": "^0.7.0",
"babel-register-ts": "^7.0.0",
"body-parser": "^1.20.2",
"express": "^4.18.2",
"got": "^11.8.0",
"http-errors": "^2.0.0",
"http-shutdown": "^1.2.2",
"loglevel": "^1.7.1",
"mocha": "^10.2.0",
"mocha-steps": "^1.3.0",
"mocha-suite-hooks": "^0.1.0",
"nginx-binaries": "^0.6.1",
"nginx-testing": "^0.3.0",
"njs-types": "0.7.11",
"npm-run-all": "^4.1.5",
"oauth2-mock-server": "^6.0.0",
"power-assert": "^1.6.1",
"rollup": "^3.22.0",
"rollup-plugin-add-git-msg": "^1.1.0",
"tough-cookie": "^4.1.2",
"typescript": "~5.0.4"
}
}