forked from ros-tooling/action-ros-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.4 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
{
"name": "action-ros-ci",
"version": "0.2.5",
"description": "GitHub Action compiling and testing a ROS 2 package",
"main": "lib/main.js",
"scripts": {
"build": "ncc build src/action-ros-ci.ts -o dist",
"fixup": "eslint . --fix",
"lint": "eslint .",
"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.4.0",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"@actions/io": "^1.1.1",
"async-retry": "^1.3.1"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.27.0",
"@vercel/ncc": "^0.33.3",
"acorn": "^8.1.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-circus": "^27.0.1",
"lint-staged": "^10.5.4",
"prettier": "2.3.2",
"ts-jest": "^26.5.6",
"typescript": "^4.3.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}