-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.63 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
48
49
50
51
52
53
54
55
56
57
{
"name": "update-xcode-version-action",
"version": "1.0.0",
"description": "",
"main": "src/main.ts",
"scripts": {
"build": "tsc",
"checkTypes": "tsc --noEmit",
"pack": "esbuild src/main.ts --bundle --platform=node --target=node12.20.0 --outfile=dist/index.js",
"test": "jest",
"test:watch": "npm run test -- --watch",
"test:watchAll": "npm run test -- --watchAll",
"test:coverage": "npm run test -- --coverage",
"test:coverage:watch": "npm run test -- --coverage --watch",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier \"**/*.ts\" \"**/*.js\" \"**/*.yml\"",
"format": "npm run prettier -- --write",
"format:check": "npm run prettier -- --check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JosephDuffy/update-xcode-version-action.git"
},
"keywords": [
"xcode",
"github-actions"
],
"author": "Joseph Duffy",
"license": "MIT",
"dependencies": {
"@actions/cache": "^1.0.7",
"@actions/core": "^1.2.7",
"@actions/exec": "^1.0.4",
"@actions/github": "^5.0.0",
"@actions/tool-cache": "^1.6.1",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/eslint": "^7.2.11",
"@types/jest": "^26.0.23",
"@types/node": "~12.19",
"@typescript-eslint/parser": "^4.27.0",
"esbuild": "^0.12.1",
"eslint": "^7.26.0",
"eslint-plugin-github": "^4.1.3",
"eslint-plugin-jest": "^24.3.6",
"jest": "^26.6.3",
"jest-circus": "^27.0.4",
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"overrides": {
"node-fetch": "^2.6.7"
}
}