forked from maxim-lobanov/setup-xcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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.6.0",
"plist": "^3.0.4",
"semver": "^7.3.5"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^12.20.40",
"@types/plist": "^3.0.2",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@vercel/ncc": "^0.33.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.4",
"jest": "^27.4.5",
"jest-circus": "^27.4.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
}
}