-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.58 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
49
50
51
52
53
54
55
{
"name": "@caff/s3-glob-sync-github-action",
"version": "0.0.2",
"description": "A Github action to get the packages in a Yarn workspace",
"main": "lib/index.js",
"repository": "https://github.com/caffco/s3-glob-sync-github-action",
"bugs": {
"url": "https://github.com/caffco/s3-glob-sync-github-action/issues"
},
"homepage": "https://github.com/caffco/s3-glob-sync-github-action#readme",
"author": "Lluís Ulzurrun de Asanza i Sàez <me@llu.is>",
"license": "MIT",
"keywords": [
"actions",
"node",
"yarn",
"workspace"
],
"scripts": {
"prepare": "husky install",
"build": "run-s tsc package",
"tsc": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "run-s format lint test build"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@types/jest": "^29.5.14",
"@types/mkdirp": "^1.0.2",
"@types/node": "^18.11.9",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.1",
"eslint-plugin-github": "^4.4.0",
"eslint-plugin-jest": "^28.10.0",
"husky": "^8.0.1",
"jest": "^29.7.0",
"jest-circus": "^29.2.0",
"lint-staged": "^15.2.11",
"npm-run-all": "^4.1.5",
"prettier": "2.8.8",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/glob": "^0.5.0",
"@aws-sdk/client-s3": "^3.717.0",
"mkdirp": "^1.0.4"
}
}