-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "setup-cocoapods",
"version": "1.4.0",
"private": true,
"description": "Set up your GitHub Actions workflow with a specific version of Cocoapods",
"main": "lib/setup-cocoapods.js",
"scripts": {
"build": "tsc && ncc build",
"test": "jest",
"lint": "npx eslint **/*.ts",
"pre-commit": "npm run build && npm run test && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxim-lobanov/setup-cocoapods.git"
},
"keywords": [
"actions",
"cocoapods",
"setup"
],
"author": "Maxim Lobanov",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vercel/ncc": "^0.38.1",
"eslint": "8.54.0",
"eslint-plugin-jest": "^27.6.0",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"ts-jest": "29.1.1",
"typescript": "^5.3.2"
}
}