-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.55 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.55 KB
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
{
"name": "@guardian/actions-riff-raff",
"private": true,
"version": "0.0.0",
"description": "A GitHub Action to build and upload Riff-Raff artifacts.",
"main": "dist/index.js",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node24 --packages=bundle --outfile=dist/index.js",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"tsc": "tsc --noEmit",
"lint": "eslint src --ext .ts --no-error-on-unmatched-pattern",
"format": "prettier --check \"src/**/*.ts\"",
"format-fix": "prettier --write \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "github.com/guardian/actions-riff-raff"
},
"author": "devx@theguardian.com",
"license": "ISC",
"dependencies": {
"@actions/core": "^2.0.2",
"@actions/github": "^9.0.0",
"@aws-sdk/client-s3": "3.1040.0",
"@aws-sdk/credential-providers": "3.1040.0",
"@aws-sdk/lib-storage": "3.1040.0",
"esbuild": "^0.28.0",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@guardian/eslint-config": "14.0.1",
"@guardian/prettier": "^10.0.0",
"@guardian/tsconfig": "^1.0.1",
"@octokit/webhooks-definitions": "^3.68.1",
"@types/jest": "30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "25.6.0",
"eslint": "9.39.2",
"eslint-plugin-prettier": "5.5.5",
"jest": "30.3.0",
"ts-jest": "29.4.9",
"typescript": "5.9.3"
},
"prettier": "@guardian/prettier",
"jest": {
"preset": "ts-jest/presets/default-esm",
"testEnvironment": "node",
"setupFiles": ["./src/jest.setup.ts"]
}
}