-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
61 lines (61 loc) · 1.77 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
56
57
58
59
60
61
{
"name": "pulumi-github-action",
"version": "2.0.0",
"main": "dist/index.js",
"repository": "[email protected]: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": "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": {
"@types/dedent": "^0.7.0",
"@types/faker": "^6.6.9",
"@types/jest": "~27.5.0",
"@types/node": "~20.4.9",
"@typescript-eslint/eslint-plugin": "~4.33.0",
"@typescript-eslint/parser": "~4.33.0",
"@vercel/ncc": "^0.36.1",
"eslint": "~7.32.0",
"eslint-config-prettier": "~9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "~27.6.0",
"faker": "^6.6.6",
"husky": "^8.0.3",
"jest": "~26.6.3",
"jest-playback": "^3.0.0",
"lint-staged": "^15.2.2",
"prettier": "^2.8.8",
"rimraf": "~5.0.1",
"ts-jest": "~26.5.6"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"@pulumi/pulumi": "3.134.0",
"actions-parsers": "^1.0.2",
"ansi-to-html": "^0.7.2",
"dedent": "^0.7.0",
"envalid": "^7.3.1",
"got": "^11.8.6",
"runtypes": "^6.7.0",
"semver": "^7.6.1",
"ts-invariant": "^0.10.3",
"typescript": "4.5"
}
}