-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.35 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
{
"name": "async-behavior-tree",
"version": "0.7.2",
"description": "Behavior Tree library focusing on async functions",
"main": "dist/AsyncBehaviorTree.js",
"types": "dist/AsyncBehaviorTree.d.ts",
"directories": {
"doc": "docs"
},
"files": [
"/dist"
],
"scripts": {
"test": "jest --coverage --collectCoverageFrom=src/**/*.ts",
"jestc": "jest --clearCache",
"jestw": "jest --watch --runInBand --detectOpenHandles",
"build": "tsc",
"clean": "rimraf dist",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+git@github.com:esromneb/AsyncBehaviorTree.git"
},
"keywords": [
"Behavior Tree",
"Groot",
"BehaviorTree.CPP",
"async"
],
"author": "Benjamin Morse",
"license": "MIT",
"bugs": {
"url": "https://github.com/esromneb/AsyncBehaviorTree/issues"
},
"homepage": "https://github.com/esromneb/AsyncBehaviorTree#readme",
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^14.6.2",
"behavior-tree-flat-buffer": "^0.9.7",
"behavior-tree-zmq": "^0.5.0",
"jest": "^26.4.2",
"jest-raw-loader": "^1.0.1",
"jest-watch-typeahead": "^0.5.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"deepmerge": "^4.2.2",
"is2": "^2.0.6",
"xml2js": "^0.4.23"
}
}