-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.59 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.59 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": "github-backup-action",
"version": "2.0.1",
"description": "Github action for backing up Github orgs with migrations",
"main": "index.js",
"scripts": {
"build": "esbuild src/main.ts --platform=node --target=node20 --bundle --outfile=dist/index.js",
"watch": "esbuild src/main.ts --platform=node --target=node20 --bundle --outfile=dist/index.js --watch",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skrepr/github-backup-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/skrepr/github-backup-action/issues"
},
"homepage": "https://github.com/skrepr/github-backup-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"@aws-sdk/client-s3": "^3.386.0",
"@aws-sdk/lib-storage": "^3.386.0",
"@octokit/core": "^5.0.2",
"@types/node": "^20.8.10",
"aws-sdk": "^2.1485.0",
"axios": "^1.6.2",
"dotenv": "^16.0.2",
"esbuild": "^0.19.5",
"eslint-plugin-github": "^4.10.1",
"fs": "^0.0.1-security",
"jest": "^28.1.1",
"jshint": "^2.13.4",
"ts-jest": "^28.0.4"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"eslint": "^8.54.0",
"eslint-plugin-jest": "^27.6.0",
"prettier": "3.0.1"
}
}