-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "action-ros-lint",
"version": "0.1.4",
"description": "GitHub Action to run ROS 2 linters on a ROS 2 package",
"main": "lib/main.js",
"scripts": {
"build": "ncc build src/*.ts -o dist",
"fixup": "eslint src/*.ts --fix",
"lint": "eslint src/*.ts",
"prettier": "prettier --write 'src/*.ts'",
"test": "tsc --noEmit && jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ros-tooling/action-ros-lint.git"
},
"keywords": [
"actions",
"ros",
"lint"
],
"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-lint/issues"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.1.0",
"@vercel/ncc": "^0.38.1",
"acorn": "^8.3.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"prettier": "^3.3.0",
"ts-jest": "^29.2.2",
"typescript": "^5.5.2"
}
}