-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.7 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "ecs-deploy-task-definition-to-scheduled-task",
"version": "1.3.0",
"description": "Registers an Amazon ECS task definition and deploys it to ECS scheduled task(s).",
"main": "src/index.js",
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!**/__tests__/**",
"!**/node_modules/**",
"!**/dist/**"
],
"testEnvironment": "jest-environment-node"
},
"prettier": {
"htmlWhitespaceSensitivity": "ignore",
"trailingComma": "es5",
"singleQuote": true
},
"scripts": {
"build": "true",
"eslint": "eslint src/**.js",
"eslint:fix": "eslint src/**.js --fix",
"lint": "run-s {prettier:check,eslint}",
"package": "ncc build src/index.js -o dist",
"prettier": "prettier './**/*.{js,json,md,yml}' '!./coverage/**' '!./dist/**'",
"prettier:check": "npm run prettier -- --check",
"prettier:fix": "npm run prettier -- --write",
"test": "jest",
"test:debug": "jest --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/airfordable/ecs-deploy-task-definition-to-scheduled-task.git"
},
"keywords": [
"AWS",
"Actions",
"Airfordable",
"GitHub",
"JavaScript"
],
"author": "Aifordable, AWS",
"license": "MIT",
"bugs": {
"url": "https://github.com/airfordable/ecs-deploy-task-definition-to-scheduled-task/issues"
},
"homepage": "https://github.com/airfordable/ecs-deploy-task-definition-to-scheduled-task#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@aws-sdk/client-cloudwatch-events": "^3.613.0",
"@aws-sdk/client-ecs": "^3.613.0",
"yaml": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "11.0.0",
"@vercel/ncc": "0.38.1",
"eslint": "7.32.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "24.7.0",
"eslint-plugin-prettier": "3.4.1",
"husky": "5.2.0",
"jest": "26.6.3",
"jest-environment-node": "26.6.2",
"lint-staged": "11.2.6",
"npm-run-all2": "5.0.2",
"prettier": "2.2.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case",
"upper-case"
]
],
"header-max-length": [
1,
"always",
72
]
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js|jsx|ts|tsx)": [
"prettier --write",
"eslint --fix"
],
"*.(gql|json|md|yaml|yml)": [
"prettier --write"
]
}
}