-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
63 lines (63 loc) · 1.55 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
57
58
59
60
61
62
63
{
"name": "behaviortree",
"version": "2.1.0",
"description": "A JavaScript implementation of Behavior Trees. They are useful for implementing AIs. For Browsers and NodeJS.",
"module": "dist/index.js",
"main": "dist/index.node.js",
"files": [
"dist/index.js",
"dist/index.node.js",
"dist/index.umd.js"
],
"dependencies": {
"core-js": "^3.11.1"
},
"devDependencies": {
"@babel/core": "^7",
"@babel/eslint-parser": "7",
"@babel/preset-env": "^7",
"babel-loader": "^8.2.2",
"benchmark": "^2.1.4",
"eslint": "7.x",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "11.x",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^26.6.0",
"prettier": "^2.2.1",
"sinon": "^4.1.3",
"webpack": "^5",
"webpack-cli": "^4"
},
"scripts": {
"build": "webpack",
"lint": "eslint src",
"test": "jest",
"prepublish": "npm run build"
},
"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/"
}
}