-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.99 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "setup-swift",
"version": "1.9.1",
"private": true,
"description": "Setup Swift environment.",
"main": "lib/main.js",
"author": "Soumya Ranjan Mahunt",
"license": "MIT",
"homepage": "https://github.com/SwiftyLab/setup-swift#readme",
"engines": {
"node": ">=20.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SwiftyLab/setup-swift.git"
},
"bugs": {
"url": "https://github.com/SwiftyLab/setup-swift/issues"
},
"keywords": [
"swift",
"setup",
"setup-swift",
"actions",
"github-actions",
"ci"
],
"scripts": {
"prepare": "npm run build && node -e \"require('./.github/utils/update_metadata').fetch()\"",
"build": "tsc",
"format": "prettier --write \"**/*.ts\"",
"lint": "depcheck --ignores ts-node,ts-jest,globals,@eslint/js,@eslint/eslintrc && eslint src/**/*.ts && prettier --check \"**/*.ts\"",
"package": "ncc build",
"test": "jest",
"all": "npm run format && npm run build && npm run lint && npm run package && npm run test"
},
"dependencies": {
"@actions/cache": "^4.0.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"getos": "^3.2.1",
"glob": "^11.0.0",
"js-yaml": "^4.1.0",
"plist": "^3.1.0",
"semver": "^7.6.2"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.10.1",
"@types/getos": "^3.0.4",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/plist": "^3.0.5",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.13.0",
"@vercel/ncc": "^0.38.3",
"conventional-changelog-conventionalcommits": "^7.0.0",
"depcheck": "^1.4.7",
"eslint": "^9.16.0",
"eslint-plugin-jest": "^28.10.0",
"jest": "^29.7.0",
"nock": "^13.5.6",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}