-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.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
69
70
71
72
73
74
75
76
{
"name": "stable-learning-control",
"version": "6.0.0",
"description": "A framework for training theoretically stable (and robust) Reinforcement Learning control algorithms.",
"keywords": [
"reinforcement-learning",
"control",
"stability",
"robustness",
"simulation",
"openai-gym",
"gymnasium",
"gymnasium-environments",
"gym",
"gym-environments",
"artificial-intelligence",
"deep-learning",
"neural-networks",
"machine-learning",
"framework",
"gaussian-networks"
],
"homepage": "https://github.com/rickstaa/stable-learning-control#stable-learning-control",
"bugs": {
"url": "https://github.com/rickstaa/stable-learning-control/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:rickstaa/stable-learning-control.git"
},
"license": "MIT",
"author": "Rick Staa",
"scripts": {
"prepare": "husky install",
"sort": "sort-package-json",
"sort:py": "isort .",
"test": "pytest --cov=stable_learning_control --cov-report=term-missing --ignore=tests/algos/tf2",
"test:update:snapshots": "pytest --snapshot-update --cov=stable_learning_control --cov-report=term-missing --ignore=tests/algos/tf2",
"test:tf2": "pytest --cov=stable_learning_control --cov-report=term-missing tests/algos/tf2 --ignore=tests/algos/tf2/gpu",
"test:tf2:update:snapshots": "pytest --snapshot-update --cov=stable_learning_control --cov-report=term-missing tests/algos/tf2 --ignore=tests/algos/tf2/gpu",
"test:tf2:gpu": "pytest --cov=stable_learning_control --cov-report=term-missing tests/algos/tf2/gpu",
"test:tf2:gpu:update:snapshots": "pytest --snapshot-update --cov=stable_learning_control --cov-report=term-missing tests/algos/tf2/gpu",
"test:ci": "pytest --cov=stable_learning_control --cov-report=xml --ignore=tests/algos"
},
"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": "18.6.0",
"@commitlint/config-conventional": "18.6.0",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"husky": "9.0.7",
"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-preset-lint-recommended": "6.1.3",
"sort-package-json": "2.7.0"
}
}