-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 965 Bytes
/
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
{
"name": "@ably/sdk-upload-action",
"version": "2.2.0",
"description": "GitHub Action for use in Ably SDK repository workflows, uploading built artifacts to the SDK Team's Amazon S3 bucket (presented at sdk.ably.com).",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"build": "tsc",
"package": "ncc build lib/index.js -o dist --source-map --license licenses.txt",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "ably/sdk-upload-action",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.2.5",
"@actions/github": "^4.0.0",
"@actions/glob": "^0.1.1",
"@aws-sdk/client-s3": "^3.9.0",
"mime-types": "^2.1.30"
},
"devDependencies": {
"@types/mime-types": "^2.1.0",
"@types/node": "^14.14.41",
"@vercel/ncc": "^0.27.0",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"typescript": "^4.2.4"
}
}