generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
89 lines (89 loc) · 2.15 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
{
"name": "setup-serverless",
"version": "3.0.0",
"private": true,
"description": "Setup serverless cli for GitHub Actions",
"main": "lib/setup-serverless.js",
"scripts": {
"build": "tsc && ncc build -m",
"clean": "rimraf lib dist",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"release": "run-s lint format clean build && git add -f dist/",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Teakowa/setup-serverless.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Teakowa",
"license": "MIT",
"directories": {
"lib": "lib",
"test": "__tests__",
"src": "src"
},
"dependencies": {
"@actions/cache": "^3.2.4",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.5.0",
"@actions/io": "^1.1.3",
"@octokit/rest": "^20.1.1",
"node-fetch": "^2.6.12",
"semver": "^7.6.3"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.13",
"@types/node": "^20.14.12",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.38.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"jest": "^29.0.0",
"js-yaml": "^4.1.0",
"lint-staged": "^15.2.10",
"npm-run-all2": "^6.2.4",
"prettier": "3.3.3",
"rimraf": "^5.0.8",
"semantic-release": "^23.1.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"eslint"
],
"*.json": [
"prettier --write"
],
"*.{css,scss}": [
"npx stylelint --fix"
]
},
"engines": {
"node": ">=16.6.0",
"pnpm": ">=7.0.0"
}
}