-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "okta-hooks",
"version": "1.0.0",
"description": "Cru Okta Web-hooks (Registration / Events)",
"repository": {
"type": "git",
"url": "https://github.com/bgarlow/okta-hooks.git"
},
"author": "Brian Zoetewey <[email protected]>",
"license": "BSD-3-Clause",
"private": true,
"engines": {
"node": "> 16.0.0"
},
"scripts": {
"lint": "standard --verbose",
"test": "jest --detectOpenHandles --coverage"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"babel-jest": "^27.5.1",
"babel-plugin-source-map-support": "^2.1.3",
"coveralls": "^3.1.1",
"dotenv": "^16.0.0",
"jest": "^27.5.1",
"rollbar-sourcemap-webpack-plugin": "^3.3.0",
"serverless": "^3.35.2",
"serverless-dotenv-plugin": "^3.12.2",
"serverless-webpack": "^5.6.1",
"standard": "^16.0.4",
"webpack": "^5.70.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@googleapis/sheets": "^2.0.1",
"@okta/okta-sdk-nodejs": "^6.4.0",
"aws-sdk": "^2.1101.0",
"email-addresses": "^5.0.0",
"global-registry-nodejs-client": "https://github.com/CruGlobal/global-registry-nodejs-client.git",
"lodash": "^4.17.21",
"request": "^2.88.0",
"rollbar": "^2.24.1",
"source-map-support": "^0.5.21",
"uuid": "^8.3.2"
},
"standard": {
"env": {
"node": true,
"jest": true
}
},
"jest": {
"setupFiles": [
"./tests/setup.js"
]
}
}