File tree 5 files changed +6
-10
lines changed
5 files changed +6
-10
lines changed Original file line number Diff line number Diff line change 1
1
package-lock.json
2
2
dist
3
+ test /dist
4
+ .nyc_output
5
+ node_modules
Original file line number Diff line number Diff line change 10
10
directories :
11
11
- node_modules
12
12
script :
13
- - npm run testCi
14
-
15
- after_success :
16
- - npm run coverage
13
+ - npm run test
Original file line number Diff line number Diff line change 1
1
# Fluent Behavior Tree
2
- [ ![ Coverage Status ] ( https://coveralls.io/repos/github/aequasi/fluent-behavior-tree/badge.svg?branch=master )] ( https://coveralls.io/github/aequasi/fluent-behavior-tree?branch=master ) [ ![ Build Status] ( https://travis-ci.org/aequasi/fluent-behavior-tree.svg?branch=master )] ( https://travis-ci.org/aequasi/fluent-behavior-tree ) [ ![ npm version] ( https://badge.fury.io/js/fluent-behavior-tree.svg )] ( https://badge.fury.io/js/fluent-behavior-tree )
2
+ [ ![ Build Status] ( https://travis-ci.org/aequasi/fluent-behavior-tree.svg?branch=master )] ( https://travis-ci.org/aequasi/fluent-behavior-tree ) [ ![ npm version] ( https://badge.fury.io/js/fluent-behavior-tree.svg )] ( https://badge.fury.io/js/fluent-behavior-tree )
3
3
4
4
This is a Typescript/Javascript implementation of https://github.com/codecapers/Fluent-Behaviour-Tree
5
5
Original file line number Diff line number Diff line change 9
9
},
10
10
"scripts" : {
11
11
"test" : " rm -r test/dist; tsc -v && tsc -p test/ && ava -v" ,
12
- "testCi" : " tsc && tsc -p test && nyc nyc --reporter=html --reporter=text ava" ,
13
- "coverage" : " nyc report --reporter=text-lcov | coveralls" ,
14
12
"compile" : " npm run lint && tsc -p ./" ,
15
13
"precommit" : " npm run compile" ,
16
14
"prepublishOnly" : " npm run compile" ,
27
25
"@types/es6-promise" : " 0.0.33" ,
28
26
"@types/node" : " ^8.0.55" ,
29
27
"ava" : " ^0.24.0" ,
30
- "coveralls" : " ^3.0.0" ,
31
28
"husky" : " ^0.14.3" ,
32
- "nyc" : " ^11.3.0" ,
33
29
"tslint" : " ^5.8.0" ,
34
30
"typemoq" : " ^2.1.0" ,
35
31
"typescript" : " ^2.6.2"
Original file line number Diff line number Diff line change 2
2
"compilerOptions" : {
3
3
"moduleResolution" : " Node" ,
4
4
"module" : " commonjs" ,
5
- "target" : " es6 " ,
5
+ "target" : " es2015 " ,
6
6
"sourceMap" : true ,
7
7
"experimentalDecorators" : true ,
8
8
"emitDecoratorMetadata" : true ,
You can’t perform that action at this time.
0 commit comments