-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 988 Bytes
/
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
{
"name": "sre-actions",
"version": "1.0.0",
"private": true,
"main": "index.js",
"engines": {
"node": "20"
},
"scripts": {
"format": "prettier --write '**/*.{js,ts}'",
"format-check": "prettier --check '**/*.{js,ts}'",
"lint": "eslint **/*.ts",
"test": "jest",
"all": "yarn format-check && yarn lint && yarn jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/globis-org/sre-actions.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "yukin01 <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^20.11.30",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.5.0",
"eslint-config-globis": "^1.3.1",
"eslint-plugin-jest": "^25.3.0",
"jest": "^27.4.5",
"js-yaml": "^4.1.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"workspaces": [
"*"
]
}