-
-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
54 lines (54 loc) · 1.53 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": "com.fluid.behavior-tree",
"version": "0.0.0",
"unity": "2018.1",
"displayName": "Fluid Behavior Tree",
"description": "A micro-framework for creating Behavior Trees based upon the builder pattern",
"main": "build.js",
"scripts": {
"build": "node build.js",
"semantic-release": "semantic-release",
"commit": "git-cz",
"prepare": "husky install"
},
"keywords": [
"ai",
"behavior tree",
"builder pattern"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ashblue/fluid-behavior-tree.git"
},
"author": {
"name": "Ash Blue",
"email": "[email protected]",
"url": "https://twitter.com/ashbluewd"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ashblue/fluid-behavior-tree/issues"
},
"homepage": "https://github.com/ashblue/fluid-behavior-tree#readme",
"devDependencies": {
"@commitlint/cli": "~17.1.2",
"@commitlint/config-conventional": "~17.1.0",
"@semantic-release/changelog": "~6.0.1",
"@semantic-release/commit-analyzer": "~9.0.2",
"@semantic-release/exec": "~6.0.3",
"@semantic-release/git": "~10.0.1",
"@semantic-release/github": "~8.0.6",
"@semantic-release/npm": "~9.0.1",
"@semantic-release/release-notes-generator": "~10.0.3",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "~3.3.0",
"husky": "^8.0.1",
"semantic-release": "~19.0.5",
"upm-package-populator": "^2.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}