-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"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=node20 --packages=bundle --outfile=dist/index.js",
"test": "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": "[email protected]",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@aws-sdk/client-s3": "3.703.0",
"@aws-sdk/credential-providers": "3.699.0",
"esbuild": "^0.24.2",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@guardian/eslint-config-typescript": "^12.0.0",
"@guardian/prettier": "^8.0.1",
"@guardian/tsconfig": "^1.0.0",
"@types/jest": "29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "22.10.5",
"jest": "29.7.0",
"ts-jest": "29.2.5",
"typescript": "5.5.2"
},
"prettier": "@guardian/prettier",
"eslintConfig": {
"extends": "@guardian/eslint-config-typescript"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}