-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.75 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
{
"name": "massdriver-setup",
"version": "4.3",
"private": true,
"description": "A Github Action for setting up the Massdriver CLI",
"main": "dist/setup/index.js",
"scripts": {
"build": "tsc && ncc build -o dist/setup src/setup.ts && ncc build -o dist/bundle_publish src/bundle_publish.ts && ncc build -o dist/bundle_build src/bundle_build.ts && ncc build -o dist/image_push src/image_push.ts && ncc build -o dist/app_patch src/app_patch.ts && ncc build -o dist/app_deploy src/app_deploy.ts && ncc build -o dist/preview_deploy src/preview_deploy.ts && ncc build -o dist/preview_decommission src/preview_decommission.ts && ncc build -o dist/definition_publish src/definition_publish.ts",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"test": "tsc --noEmit && jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/massdriver-cloud/actions.git"
},
"keywords": [
"actions",
"masdriver",
"cli"
],
"author": "Massdriver, Inc.",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^6.0.0",
"@actions/tool-cache": "^2.0.1",
"@docker/actions-toolkit": "0.23.0",
"async-retry": "^1.3.3",
"node-fetch": "^3.3.1"
},
"devDependencies": {
"@types/async-retry": "^1.4.5",
"@types/jest": "^29.5.0",
"@types/node": "^20.12.12",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.57.0",
"eslint-plugin-github": "^4.10.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.5.0",
"pre-commit": "^1.2.2",
"prettier": "^3.2.2",
"ts-jest": "^29.1.0",
"typescript": "^5.4.5"
}
}