-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.56 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
65
66
67
68
{
"name": "ros-gazebo-gym",
"version": "2.0.1",
"description": "Framework for training RL algorithms on ROS Gazebo robots.",
"keywords": [
"framework",
"reinforcement learning",
"RL",
"robotics",
"simulation",
"gymnasium",
"gymnasium-environments",
"openai-gym",
"gym-environments",
"gym",
"ros",
"gazebo",
"environments",
"panda",
"emika-franka"
],
"homepage": "https://github.com/rickstaa/ros-gazebo-gym#ros_gazebo_gym",
"bugs": {
"url": "https://github.com/rickstaa/ros-gazebo-gym/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rickstaa/ros-gazebo-gym.git"
},
"license": "MIT",
"author": "Rick Staa",
"scripts": {
"prepare": "husky install",
"sort": "sort-package-json",
"sort:py": "isort ."
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"!(CHANGELOG)*.md": "./node_modules/.bin/remark . -o --",
"!(**/(tests)/**)*.py": [
"black",
"flake8"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "19.2.0",
"@commitlint/config-conventional": "19.1.0",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"husky": "9.0.6",
"lint-staged": "15.2.0",
"release-please": "16.10.1",
"remark": "15.0.1",
"remark-cli": "12.0.0",
"remark-lint": "9.1.2",
"remark-preset-lint-recommended": "6.1.3",
"sort-package-json": "2.10.0"
}
}