-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.44 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
{
"name": "platform-authorizer",
"license": "Apache-2.0",
"private": true,
"version": "4.0.0",
"type": "module",
"main": "./src/index.js",
"description": "A Lambda authorizer for AWS API Gateway for Auth0-integrated services.",
"author": {
"email": "[email protected]",
"name": "Fulfiller Enablement"
},
"engines": {
"node": ">=18.13"
},
"scripts": {
"bundle": "webpack",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"eslintConfig": {
"root": true,
"extends": [
"eslint:all",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:promise/recommended"
],
"parserOptions": {
"ecmaVersion": "latest",
"ecmaFeatures": {
"impliedStrict": true
},
"sourceType": "module"
},
"env": {
"node": true,
"es6": true
},
"rules": {
"max-len": [
"error",
{
"code": 120
}
],
"no-console": "off",
"no-process-env": "off"
}
},
"jest": {
"testEnvironment": "node",
"moduleNameMapper": {
"#node-web-compat": "./node-web-compat-node.js"
}
},
"dependencies": {
"aws-jwt-verify": "^4.0.0"
},
"devDependencies": {
"eslint": "^8.37.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"jest-junit": "^15.0.0",
"webpack": "^5.78.0",
"webpack-cli": "^5.0.1"
}
}