forked from mislav/bump-homebrew-formula-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.1 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
{
"private": true,
"scripts": {
"build": "rm -rf lib && ncc build src/run.ts -o lib --source-map",
"lint": "eslint --ext '.js,.ts' .",
"test": "tsc --sourceMap && ava"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"@octokit/core": "^5.0.0",
"@octokit/plugin-request-log": "^4.0.0",
"@octokit/plugin-rest-endpoint-methods": "^9.0.0",
"@octokit/request-error": "^5.0.0"
},
"devDependencies": {
"@types/node": "^20.6.3",
"@types/node-fetch": "^2.6.5",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"@vercel/ncc": "^0.38.0",
"ava": "^5.3.1",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"node-fetch": "^2.7.0",
"prettier": "^3.0.3",
"typescript": "5.2.x"
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true
},
"ava": {
"files": [
"src/*test.ts"
],
"typescript": {
"rewritePaths": {
"src/": "lib/"
},
"compile": false
}
}
}