-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "setup-xcode",
"version": "1.0.0",
"private": true,
"description": "Set up your GitHub Actions workflow with a specific version of Xcode",
"main": "lib/setup-xcode.js",
"scripts": {
"build": "tsc && ncc build",
"test": "jest",
"format": "npx prettier --write src/**/*",
"format-check": "npx prettier --check src/**/*",
"lint": "npx eslint **/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxim-lobanov/setup-xcode.git"
},
"keywords": [
"actions",
"xcode",
"setup"
],
"author": "Maxim Lobanov",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"plist": "^3.1.0",
"semver": "^7.5.4"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.6.3",
"@types/plist": "^3.0.2",
"@types/semver": "^7.5.2",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.4.0",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}