forked from pulumi/actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.68 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
{
"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.4.1",
"@types/node": "~17.0.23",
"@typescript-eslint/eslint-plugin": "~4.33.0",
"@typescript-eslint/parser": "~4.33.0",
"@vercel/ncc": "^0.33.3",
"eslint": "~7.32.0",
"eslint-config-prettier": "~8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "~26.1.2",
"faker": "^6.6.6",
"husky": "^7.0.4",
"jest": "~26.6.3",
"jest-playback": "^3.0.0",
"lint-staged": "^12.3.7",
"prettier": "^2.6.0",
"rimraf": "~3.0.2",
"ts-jest": "~26.5.6"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^5.0.0",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^1.7.1",
"@pulumi/pulumi": "3.26.1",
"dedent": "^0.7.0",
"envalid": "^7.3.0",
"got": "^11.8.3",
"runtypes": "^6.5.1",
"semver": "^7.3.5",
"typescript": "~4.1.3"
}
}