-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"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",
"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.2.6",
"plist": "^3.0.1",
"semver": "^7.3.2"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^12.0.4",
"@types/plist": "^3.0.2",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"@vercel/ncc": "^0.24.1",
"eslint": "7.11.0",
"eslint-plugin-jest": "^24.1.0",
"jest": "^26.5.2",
"jest-circus": "^26.5.2",
"ts-jest": "26.4.1",
"typescript": "^4.0.3"
}
}