-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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
{
"name": "lambda-edge-azure-auth",
"version": "0.3.3",
"description": "An AWS Cloudfront Lambda@Edge function to authenticate requests using Microsoft Azure.",
"private": true,
"main": "index.js",
"scripts": {
"test": "cd tests && npm install && cd .. && node tests/tests.js",
"build": "npm install && cd build && npm install && cd .. && node build/build.js",
"package": "./package.sh"
},
"author": "Nick Shine",
"repository": "github:nickshine/lambda-edge-azure-auth",
"license": "ISC",
"dependencies": {
"axios": "^0.21.2",
"cookie": "^0.4.1",
"crypto": "^1.0.1",
"jsonwebtoken": "^8.5.1",
"jwk-to-pem": "^2.0.4",
"nonce": "^1.0.4",
"querystring": "^0.2.0",
"url": "^0.11.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.6",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.0",
"semantic-release": "^17.1.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}