forked from sersoft-gmbh/xcodebuild-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 853 Bytes
/
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
{
"name": "xcodebuild-action",
"version": "2.0.0",
"description": "A GitHub action that runs xcodebuild.",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"pack": "rm -rf dist && ncc build lib/main.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sersoft-gmbh/xcodebuild-action.git"
},
"keywords": [
"Xcode",
"xcodebuild"
],
"author": "ser.soft GmbH",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sersoft-gmbh/xcodebuild-action/issues"
},
"homepage": "https://github.com/sersoft-gmbh/xcodebuild-action#readme",
"dependencies": {
"@actions/core": "^1.10.0"
},
"devDependencies": {
"@types/node": "^16.18.27",
"@vercel/ncc": "^0.36.1",
"typescript": "^5.0.4"
}
}