-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 997 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 997 Bytes
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
{
"name": "bq2slack-github-action",
"description": "Execute SQL query in BQ and send results to Slack",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"build": "ncc build src -o dist -q",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/data-i-consulting/bq-slack-github-actions.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/data-i-consulting/bq-slack-github-actions/issues"
},
"homepage": "https://github.com/data-i-consulting/bq-slack-github-actions#readme",
"dependencies": {
"@actions/core": "^1.6.0",
"@google-cloud/bigquery": "^5.10.0",
"axios": "^0.25.0",
"ncc": "^0.3.6"
},
"devDependencies": {
"@vercel/ncc": "^0.33.1",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1"
}
}