-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "@robotopia/agent-runtime",
"version": "1.0.1",
"description": "runtime to create JavaScript controlled agents which can interact with an external turn based simulated environment",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel ./src --out-dir ./dist",
"prepublis": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robotopia-x/agent-runtime.git"
},
"keywords": [
"runtime",
"javascript",
"agent",
"scriptable",
"simulation"
],
"author": "Paul Sonnentag <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/robotopia-x/agent-runtime/issues"
},
"homepage": "https://github.com/robotopia-x/agent-runtime#readme",
"dependencies": {
"esper.js": "^0.1.7",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0"
}
}