-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 1.96 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "actions-cfn-diff",
"version": "0.1.0",
"private": false,
"description": "GitHub Actions to summarize diffs of CloudFormation stack",
"keywords": [
"actions",
"node",
"cloudformation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/taichi/actions-cfn-diff.git"
},
"license": "MIT",
"author": "taichi",
"main": "lib/main.js",
"scripts": {
"build": "npm-run-all clean --parallel lint compile",
"package": "ncc build --source-map --license licenses.txt",
"bundle": "npm-run-all build package",
"clean": "rimraf lib dist",
"compile": "tsc",
"fix": "run-s format lint:fix",
"format": "prettier --write .",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "ava"
},
"eslintIgnore": [
".eslintrc.js",
"dist/",
"lib/",
"node_modules/"
],
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"files": [
"test/**/*.test.ts"
],
"verbose": true
},
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"@aws-cdk/cloudformation-diff": "2.93.0",
"@aws-sdk/client-cloudformation": "3.699.0",
"@lifeomic/attempt": "3.0.3",
"aws-cdk-lib": "2.93.0",
"js-yaml": "4.1.0",
"strip-ansi": "7.1.0"
},
"devDependencies": {
"@types/js-yaml": "4.0.9",
"@types/node": "22.9.3",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"@vercel/ncc": "0.38.3",
"ava": "6.2.0",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-ava": "15.0.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.9.0",
"npm-check-updates": "17.1.11",
"npm-run-all2": "7.0.1",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"sort-package-json": "2.12.0",
"ts-node": "10.9.2",
"typescript": "5.7.2"
}
}