-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.01 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
{
"name": "slack-notifier",
"version": "v1.0.5",
"description": "",
"scripts": {
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"test:watch": "yarn test --watch --watch-extensions ts",
"build-action": "NODE_OPTIONS=--openssl-legacy-provider yarn ncc build ping-slack/index.ts -o ping-slack/dist",
"build": "rm -rf ./dist && yarn tsc",
"postbuild": "cp package.json yarn.lock LICENSE README.md ./dist && cd dist && yarn install --production",
"zip": "cd dist && zip -FSr ../terraform/lambda .",
"dist": "yarn build && yarn zip"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.64",
"@types/mocha": "^7.0.2",
"@types/node": "^14.11.2",
"@types/request": "^2.48.5",
"@zeit/ncc": "^0.22.3",
"aws-sdk": "^2.785.0",
"mocha": "^6.2.0",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^4.0.0",
"@octokit/rest": "^18.0.9",
"request": "^2.88.2"
}
}