-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "openai_lab",
"version": "1.0.0",
"description": "An experimentation system for Reinforcement Learning using OpenAI and Keras",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "grunt",
"test": "python3 setup.py test",
"posttest": "rm -rf .cache __pycache__ */__pycache__ *egg-info htmlcov",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kengz/openai_lab.git"
},
"keywords": [
"openai",
"gym",
"lab",
"reinforcement",
"learning"
],
"author": "keng, laura",
"license": "MIT",
"bugs": {
"url": "https://github.com/kengz/openai_lab/issues"
},
"homepage": "https://github.com/kengz/openai_lab#readme",
"dependencies": {
"config": "^1.25.1",
"grunt": "^1.0.1",
"grunt-concurrent": "^2.3.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-shell": "^2.1.0",
"grunt-sync": "^0.6.2",
"load-grunt-tasks": "^3.5.2",
"lodash": "^4.17.4",
"resolve-dir": "^1.0.0",
"snyk": "^1.41.1"
},
"snyk": true
}