forked from Calamari/BehaviorTree.js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.43 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
{
"name": "behaviortree",
"version": "3.0.0",
"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",
"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 && npm run ts-types",
"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/"
}
}