-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.42 KB
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
{
"name": "appetize-github-action",
"version": "1.0.0",
"private": true,
"description": "Github Action to facilitate interaction with the Appetize API",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "npx eslint .",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appetizeio/github-action-appetize.git"
},
"keywords": [
"actions",
"node",
"setup",
"appetize"
],
"author": "Appetize",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"axios": "^1.7.7"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.0.2",
"eslint-import-resolver-typescript": "^4.3.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.5",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "^3.5.3",
"prettier-eslint": "^16.3.0",
"ts-jest": "^29.2.5",
"typescript": "^5.8.2"
}
}