forked from ros-tooling/setup-ros
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.34 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": "setup-ros",
"version": "0.7.1",
"description": "GitHub Action to setup a ROS 2 development environment",
"main": "lib/main.js",
"scripts": {
"prepare": "husky install",
"build": "ncc build src/setup-ros.ts -o dist",
"fixup": "eslint . --fix",
"lint": "eslint .",
"prettier": "prettier --write .",
"test": "tsc --noEmit && jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LCAS/setup-ros.git"
},
"keywords": [
"actions",
"ros2",
"setup"
],
"author": "ROS 2 Tooling Working Group",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"bugs": {
"url": "https://github.com/LCAS/setup-ros/issues"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.11.18",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-circus": "^29.6.1",
"lint-staged": "^14.0.1",
"prettier": "^3.2.5",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}