-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
64 lines (64 loc) · 1.45 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": "action-ros-ci",
"version": "0.3.15",
"description": "GitHub Action compiling and testing a ROS 2 package",
"main": "lib/main.js",
"scripts": {
"prepare": "husky",
"build": "ncc build src/run.ts -o dist",
"fixup": "eslint . --fix",
"lint": "eslint .",
"prettier": "prettier --write .",
"test": "tsc --noEmit && jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ros-tooling/action-ros-ci.git"
},
"keywords": [
"actions",
"ros",
"ci"
],
"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/ros-tooling/action-ros-ci/issues"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3",
"async-retry": "^1.3.3"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/ncc": "^0.38.1",
"acorn": "^8.12.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.1",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "3.3.0",
"ts-jest": "^29.2.2",
"typescript": "^5.4.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}