-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "@yantra-core/sutra",
"version": "1.8.0",
"description": "A JavaScript behavior tree library for easily creating and managing complex behavior patterns in game development.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "tap --coverage-report=lcov --allow-incomplete-coverage test/",
"cover": "tap --coverage-report=html test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yantra-core/sutra.git"
},
"keywords": [
"behavior-tree",
"game-development",
"ai",
"event-driven",
"nodejs",
"game-logic",
"json"
],
"author": "Yantra Works",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/yantra-core/sutra/issues"
},
"homepage": "https://github.com/yantra-core/sutra#readme",
"devDependencies": {
"@babel/preset-env": "^7.23.6",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"tap": "^18.6.1",
"tape": "^5.7.2",
"uglify-js": "^3.17.4",
"typedoc": "^0.25.7",
"typedoc-material-theme": "^1.0.2"
}
}