forked from agentmodels/webppl-agents
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.7 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": "webppl-agents",
"version": "1.0.0",
"description": "Webppl library for MDP and POMDP agent models and for generating Gridworld and Bandit problems. JS library for displaying Gridworld.",
"main": "src/main.js",
"dependencies": {
"paper": "0.12.4",
"underscore": "1.8.3"
},
"peerDependencies": {
"webppl": "github:probmods/webppl",
"webppl-dp": "0.1.1"
},
"devDependencies": {
"jsdom": "14.1.0",
"canvas": "2.11.2"
},
"scripts": {
"test": "./test.sh"
},
"webppl": {
"wppl": [
"src/utils/utils.wppl",
"src/utils/utilsSatisfia.wppl",
"src/utils/metalog.wppl",
"src/environments/makeGridWorldMDP.wppl",
"src/environments/makeBanditPOMDP.wppl",
"src/environments/makeGridWorldPOMDP.wppl",
"src/environments/safety_gridworlds/very_simple.wppl",
"src/agents/makeMDPAgent.wppl",
"src/agents/makeMDPAgentSatisfia.wppl",
"src/agents/makePOMDPAgent.wppl",
"src/simulation/simulateMDP.wppl",
"src/simulation/simulatePOMDP.wppl",
"src/visualization/gridworld.wppl",
"src/extra/extend.wppl",
"src/extra/getMarginalObject.wppl",
"src/extra/getRestaurantHyperbolicInfer.wppl",
"src/extra/makeBanditStartState.wppl",
"src/extra/makeBanditAgent.wppl",
"src/extra/inferBandit.wppl",
"src/extra/makeRestaurantSearchPOMDP.wppl"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/pik-gane/webppl-agents-satisfia.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/pik-gane/webppl-agents-satisfia/issues"
},
"homepage": "https://github.com/pik-gane/webppl-agents-satisfia#readme"
}