This repository has been archived by the owner on Apr 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.76 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
{
"name": "slack-notifications-lambda",
"version": "1.0.0",
"description": "Slack notifications lambda from an SNS message using cooperTS",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"check": "tsc --noEmit",
"slackNotifierTest": "serverless invoke local --function slackNotifierTest --verbose",
"deploy:slackNotifierTest": "sls deploy function -f slackNotifierTest",
"clean": "rm -rf .serverless",
"test": ". ~/.nvm/nvm.sh; nvm use; jest",
"sls": "node --inspect-brk=9229 $(which sls)"
},
"keywords": [
"aws",
"lambda",
"slack",
"cooperTS"
],
"author": "ExecOnline",
"license": "UNLICENSED",
"devDependencies": {
"@types/aws-lambda": "^8.10.17",
"@types/jest": "^23.3.10",
"@types/lambda-tester": "^3.5.1",
"@types/node": "^10.12.18",
"aws-sdk": "^2.814.0",
"dtslint": "^0.6.0",
"jest": "^24.7.1",
"lambda-tester": "^3.5.0",
"parcel-bundler": "^1.12.3",
"prettier": "^1.19.1",
"serverless-dotenv-plugin": "^2.0.1",
"serverless-offline": "^3.31.3",
"serverless-plugin-parcel": "^0.1.1",
"ts-jest": "^24.0.1",
"typescript": "^3.4.1"
},
"dependencies": {
"@execonline-inc/environment": "^1.0.2",
"acorn": "^7.1.1",
"ajaxian": "^3.0.1",
"ajaxios": "^1.0.2",
"axios": "^0.21.2",
"handlebars": "^4.7.7",
"jsonfile": "^5.0.0",
"jsonous": "^3.3.1",
"lodash": "^4.17.21",
"maybeasy": "^2.5.0",
"minimist": "^1.2.5",
"mixin-deep": "^2.0.1",
"safer-eval": "^1.3.6",
"serialize-to-js": "^3.1.1",
"set-value": "^4.0.1",
"taskarian": "^2.1.0"
},
"engines": {
"node": "^12.16.1",
"npm": "^5.6.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100
}
}