-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 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
62
{
"name": "atmos-terraform-drift-detection",
"version": "1.0.0",
"private": true,
"description": "Atmos Terraform Drift Detection ",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/**",
"prettier": "prettier --write \"**/*.{html,js,json,md,yaml,yml}\"",
"prettier:verify": "prettier --check \"**/*.{html,js,json,md,yaml,yml}\"",
"test": "jest",
"test:coverage": "jest --coverage",
"postinstall": "husky install",
"precommit": "lint-staged"
},
"lint-staged": {
"!(node_modules/**/*)*.{html,js,json,md,yaml,yml}": [
"prettier --write"
],
"./src/**/*.js": [
"eslint",
"jest --bail --findRelatedTests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudposse/github-action-atmos-terraform-drift-detection.git"
},
"keywords": [
"github",
"action",
"atmos",
"terraform"
],
"author": "Cloud Posse",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/cloudposse/github-action-atmos-terraform-drift-detection/issues"
},
"homepage": "https://github.com/cloudposse/github-action-atmos-terraform-drift-detection#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@actions/artifact": "^2.1.8",
"minimatch": "^9.0.3"
},
"devDependencies": {
"eslint": "^8.45.0",
"eslint-plugin-jest": "^27.2.3",
"husky": "^8.0.3",
"jest": "^29.6.2",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0"
},
"engines": {
"node": ">=16"
},
"volta": {
"node": "20.14.0",
"npm": "8.11.0"
}
}