forked from gazebo-tooling/setup-gazebo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.44 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
{
"name": "setup-gazebo",
"version": "0.0.1",
"description": "GitHub action to setup a Gazebo release in a supported platform",
"main": "lib/main.js",
"scripts": {
"build": "ncc build src/setup-gazebo.ts -o dist",
"test": "tsc --noEmit && jest --coverage",
"fixup": "eslint . --fix",
"lint": "eslint .",
"prettier": "prettier --write .",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gazebo-tooling/setup-gazebo.git"
},
"bugs": {
"url": "https://github.com/gazebo-tooling/setup-gazebo/issues"
},
"keywords": [
"actions",
"gazebo",
"setup"
],
"author": {
"name": "Saurabh Kamat",
"email": "[email protected]"
},
"contributors": [
{
"name": "Jose Luis Rivero",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.5.0",
"@typescript-eslint/parser": "^7.18.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.2",
"jest": "^29.7.0",
"lint-staged": "^15.2.5",
"prettier": "^3.3.1",
"ts-jest": "^29.2.0",
"typescript": "^5.5.2"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@vercel/ncc": "^0.38.1",
"yaml": "^2.5.0"
}
}