-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.84 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "pulumi-github-action",
"version": "2.0.0",
"main": "dist/index.js",
"repository": "git@github.com:pulumi/actions",
"license": "Apache-2.0",
"scripts": {
"clean": "rimraf coverage build tmp dist",
"prebuild": "yarn run clean",
"build": "ncc build src/main.ts -e typescript -o dist --source-map",
"postbuild": "node scripts/replace-ts.js",
"lint": "eslint . --ext .ts,.tsx",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --coverage src/**/*",
"test:watch": "jest --watch",
"postinstall": "husky install .github/husky"
},
"lint-staged": {
"src/**/*.{yaml,yml}": "prettier --write",
"src/**/*.{js,ts}": "eslint --cache --fix",
".eslintrc": "prettier --write",
"*.md": "prettier --write"
},
"devDependencies": {
"@eslint/js": "~10.0.1",
"@jest/globals": "~30.4.0",
"@types/dedent": "^0.7.2",
"@types/jest": "~30.0.0",
"@types/node": "~26.1.1",
"@vercel/ncc": "^0.44.1",
"eslint": "~10.8.0",
"eslint-config-prettier": "~10.1.8",
"eslint-plugin-import-x": "~4.17.1",
"eslint-plugin-jest": "~29.16.0",
"globals": "~17.8.0",
"husky": "^9.1.7",
"jest": "~30.4.2",
"jest-playback": "^4.1.0",
"lint-staged": "^17.2.0",
"prettier": "^3.9.6",
"rimraf": "~6.1.3",
"ts-jest": "~29.4.12",
"typescript": "~5.9.3",
"typescript-eslint": "~8.59.1",
"@types/js-yaml": "^4.0.9"
},
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.1.1",
"@actions/io": "^3.0.2",
"@actions/tool-cache": "^4.0.0",
"@pulumi/pulumi": "~3.254.0",
"dedent": "^1.7.2",
"envalid": "^8.2.0",
"runtypes": "^7.0.4",
"semver": "^7.6.1",
"ts-invariant": "^0.10.3",
"tslib": "^2.8.1",
"js-yaml": "^5.2.2"
},
"resolutions": {
"@npmcli/run-script": "^11.0.0"
}
}