generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.79 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
62
63
64
{
"name": "cleanup-pulumi-stacks",
"version": "0.0.0",
"private": true,
"description": "Automatically cleanup development/preview stacks in a Pulumi project",
"main": "lib/src/main.js",
"scripts": {
"prebuild": "rimraf lib dist",
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint 'src/**/*.ts'",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"test:mutate": "stryker run",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jbrunton/cleanup-pulumi-stacks.git"
},
"engines": {
"node": ">= 20.0.0 <21.0.0"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@pulumi/pulumi": "^3.50.2",
"date-fns": "^2.29.3",
"micromatch": "^4.0.5",
"yaml": "2.2.1",
"zod": "3.20.2"
},
"devDependencies": {
"@stryker-mutator/core": "6.3.1",
"@stryker-mutator/jest-runner": "6.3.1",
"@types/jest": "29.4.0",
"@types/micromatch": "^4.0.2",
"@types/node": "^18.11.0",
"@typescript-eslint/parser": "^4.33.0",
"@vercel/ncc": "^0.36.0",
"eslint": "^7.32.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-boundaries": "3.1.0",
"eslint-plugin-github": "^4.3.2",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "^25.3.2",
"jest": "29.4.1",
"jest-mock-extended": "^3.0.1",
"js-yaml": "^4.1.0",
"prettier": "2.8.3",
"rimraf": "3.0.2",
"semantic-release": "20.1.0",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typescript": "^4.4.4"
}
}