UNPKG

behaviortree

Version:

A JavaScript implementation of Behavior Trees. They are useful for implementing AIs. For Browsers and NodeJS.

58 lines (57 loc) 1.49 kB
{ "name": "behaviortree", "version": "3.0.0-beta.1", "description": "A JavaScript implementation of Behavior Trees. They are useful for implementing AIs. For Browsers and NodeJS.", "module": "lib/index.js", "main": "lib/index.js", "files": [ "lib" ], "types": "lib/index.d.ts", "dependencies": { "core-js": "^3.20.2" }, "devDependencies": { "@types/jest": "^27.0.2", "@types/sinon": "^10.0.6", "@typescript-eslint/eslint-plugin": "^5.9.0", "@typescript-eslint/parser": "^5.9.0", "benchmark": "^2.1.4", "esbuild": "^0.14.11", "esbuild-jest": "^0.5.0", "esbuild-node-externals": "^1.3.0", "eslint": "^7.0.0", "jest": "^27.4.7", "prettier": "^2.5.1", "sinon": "^4.1.3", "typescript": "^4.5.4" }, "scripts": { "build": "rm -rf lib && node bin/build.js && tsc", "lint": "eslint src --ext .ts", "prepublish": "npm run build", "test": "jest --config jest.config.json", "ts-types": "tsc --emitDeclarationOnly --outDir lib" }, "repository": { "type": "git", "url": "https://github.com/Calamari/BehaviorTree.js.git" }, "keywords": [ "Behaviors", "AI", "Behavior Tree", "Tree", "Intelligence", "Games" ], "author": "Georg Tavonius", "license": "MIT", "bugs": { "url": "https://github.com/Calamari/BehaviorTree.js/issues" }, "homepage": "https://github.com/Calamari/BehaviorTree.js", "jest": { "testURL": "http://localhost/" } }