-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.64 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": "stable-gym",
"version": "0.20.7",
"description": "Contains several gymnasium environments with cost functions compatible with (stable) RL agents (i.e. positive definite).",
"keywords": [
"reinforcement-learning",
"simulation",
"stability",
"gymnasium",
"gymnasium-environments",
"openai-gym",
"gym-environments",
"gym"
],
"homepage": "https://github.com/rickstaa/stable-gym#stable-gym",
"bugs": {
"url": "https://github.com/rickstaa/stable-gym/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:rickstaa/stable-gym.git"
},
"license": "MIT",
"author": "Rick Staa",
"scripts": {
"prepare": "husky install",
"sort": "sort-package-json",
"sort:py": "isort .",
"test": "pytest --cov=stable_gym --cov-report=term-missing",
"test:update:snapshots": "pytest --snapshot-update"
},
"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.0.3",
"@commitlint/config-conventional": "18.6.0",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"husky": "9.0.6",
"lint-staged": "15.2.0",
"release-please": "^16.9.0",
"remark": "15.0.1",
"remark-cli": "12.0.0",
"remark-lint": "9.1.2",
"remark-math": "6.0.0",
"remark-preset-lint-recommended": "6.1.3",
"sort-package-json": "2.7.0"
}
}