forked from ros-tooling/action-ros-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.5 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
{
"name": "action-ros-ci",
"version": "0.0.0",
"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",
"lint": "eslint src/action-ros-ci.ts",
"prettier": "prettier --write 'src/action-ros-ci.ts'",
"test": "tsc --noEmit && jest --coverage",
"pre-commit": "npm run test && npm run lint && npm run build"
},
"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.0.0",
"@actions/exec": "^1.0.1",
"@actions/github": "^2.0.0",
"@actions/io": "^1.0.1"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.13.2",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"@zeit/ncc": "^0.22.1",
"acorn": "^7.1.1",
"eslint": "^6.5.1",
"husky": "^4.2.5",
"jest": "^25.4.0",
"jest-circus": "^25.4.0",
"prettier": "2.0.5",
"ts-jest": "^25.4.0",
"typescript": "^3.5.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit && git add dist/index.js"
}
}
}