-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
124 lines (124 loc) · 2.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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "invoke-aws-lambda",
"repository": "[email protected]:gagoar/invoke-aws-lambda.git",
"license": "MIT",
"version": "3.3.2",
"description": "Invoke AWS Lambda",
"main": "index.ts",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"test": "jest",
"build": "esbuild --bundle ./index.ts --platform=node --target=node12 --main-fields=main --outdir=dist && pretty-quick dist/index.js",
"lint": "eslint src/* --ext .ts",
"prepare": "husky install"
},
"engines": {
"node": ">12.0.0"
},
"keywords": [
"cli",
"AWS",
"github",
"action"
],
"lint-staged": {
"*": [
"pretty-quick --staged"
],
"*.ts": [
"eslint --fix",
"bash -c \"npm run build\"",
"git add ."
]
},
"prettier": {
"singleQuote": true,
"semi": true,
"printWidth": 120
},
"eslintConfig": {
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"rules": {
"quotes": [
2,
"single",
"avoid-escape"
],
"no-debugger": "error",
"no-process-env": "off",
"import/prefer-default-export": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"vars": "all",
"args": "after-used",
"ignoreRestSiblings": true
}
],
"new-cap": [
"error",
{
"capIsNewExceptions": [
"Injectable",
"Inject"
]
}
],
"prefer-destructuring": [
"error",
{
"VariableDeclarator": {
"array": false,
"object": true
},
"AssignmentExpression": {
"array": true,
"object": false
}
},
{
"enforceForRenamedProperties": false
}
]
}
},
"author": "Gago <[email protected]>",
"dependencies": {
"@actions/core": "1.10.0",
"aws-sdk": "^2.681.0"
},
"devDependencies": {
"@types/jest": "27.5.2",
"@types/node": "16.11.57",
"@typescript-eslint/eslint-plugin": "5.23.0",
"@typescript-eslint/parser": "5.23.0",
"ajv-keywords": "5.1.0",
"bufferutil": "4.0.6",
"esbuild": "0.14.44",
"eslint": "8.23.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "7.0.4",
"jest": "28.1.1",
"lint-staged": "10.5.3",
"prettier": "2.6.2",
"prettier-eslint": "13.0.0",
"prettier-eslint-cli": "^8.0.1",
"pretty-quick": "3.1.3",
"ts-jest": "28.0.5",
"ts-node": "10.7.0",
"tslib": "2.4.0",
"typescript": "5.5.4",
"utf-8-validate": "5.0.9",
"ws": "7.5.10"
}
}