-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
46 lines (46 loc) · 1.4 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
{
"name": "fluent-behavior-tree",
"version": "1.2.6",
"description": "Behavior tree library with a fluent API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/aequasi/fluent-behavior-tree"
},
"scripts": {
"test": "rm -r test/dist; tsc -v && tsc -p test/ && ava -v",
"compile": "npm run lint && tsc -p ./",
"precommit": "npm run compile",
"prepublishOnly": "npm run compile",
"lint": "tslint -c tslint.json 'src/**/*.ts' --exclude 'src/**/*.d.ts' --fix",
"watch": "nodemon -e ts -w src --exec 'npm run compile'"
},
"author": "Aaron Scherer <[email protected]> (http://aaronscherer.me)",
"license": "MIT",
"dependencies": {
"ts-data.stack": "^1.0.6",
"ts-iterable": "^1.0.1"
},
"devDependencies": {
"@types/es6-promise": "0.0.33",
"@types/node": "^8.0.57",
"ava": "^0.24.0",
"husky": "^0.14.3",
"tslint": "^5.8.0",
"typemoq": "^2.1.0",
"typescript": "^2.6.2"
},
"ava": {
"files": [
"test/dist/**/*Test.js"
],
"source": [
"dist/**/*.js"
]
},
"bugs": {
"url": "https://github.com/aequasi/fluent-behavior-tree/issues"
},
"homepage": "https://github.com/aequasi/fluent-behavior-tree#readme"
}