-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.55 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
{
"name": "reinforce-js",
"version": "1.5.1",
"description": "A collection of various reinforcement learning solver. The library is an object-oriented approach (baked with Typescript) and tries to deliver simplified interfaces that make using the algorithms pretty simple.",
"keywords": [
"reinforce",
"reinforcement",
"deep learning",
"reinforcement learning",
"ai",
"artificial intelligence",
"q-learning",
"deep-q-network",
"dqn",
"sarsa",
"temporal difference",
"deepmind",
"deterministic policy gradients",
"recurrent",
"agent",
"neural network",
"artificial neural network",
"dynamic programming",
"bellman",
"solver"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run test",
"test": "./node_modules/.bin/jasmine --config=jasmine.json",
"pretest": "npm run build",
"build": "./node_modules/.bin/tsc -p .",
"prebuild": "./node_modules/.bin/rimraf dist",
"posttest": "./node_modules/.bin/rimraf dist/*.spec.* dist/*.doubles.*"
},
"author": "Menno van Rahden",
"homepage": "https://github.com/mvrahden/reinforce-js#readme",
"bugs": {
"url": "https://github.com/mvrahden/reinforce-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mvrahden/reinforce-js.git"
},
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^2.8.8",
"jasmine": "^2.99.0",
"rimraf": "^2.6.2",
"typescript": "^2.9.2"
},
"dependencies": {
"recurrent-js": "^1.7.3"
}
}