-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "setup-xamarin",
"version": "1.0.0",
"private": true,
"description": "Set up your GitHub Actions workflow with a specific version of Mono & Xamarin",
"main": "lib/setup-xamarin.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-xamarin.git"
},
"keywords": [
"actions",
"xamarin",
"mono",
"setup"
],
"author": "Maxim Lobanov",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"compare-versions": "^3.6.0"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^12.0.4",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"@zeit/ncc": "^0.22.3",
"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"
}
}