File tree Expand file tree Collapse file tree 3 files changed +9
-10
lines changed Expand file tree Collapse file tree 3 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 11language : node_js
22node_js :
3+ - ' 7'
34 - ' 6'
45 - ' 5'
56 - ' 4'
6- - ' 0.12'
7- - ' 0.10'
87after_success :
98 - npm run coveralls
109 - npm run coverage-clean
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ gulp.task('pre-test', () => {
1515
1616gulp . task ( 'test' , [ 'pre-test' ] , ( ) => {
1717 return gulp . src ( [ 'test/*.js' ] )
18- . pipe ( mocha ( ) )
18+ . pipe ( mocha ( { compilers : 'js:babel-core/register' } ) )
1919 // Creating the reports after tests ran
2020 . pipe ( istanbul . writeReports ( ) )
2121 // Checking coverage against minimum acceptable thresholds
Original file line number Diff line number Diff line change 11{
22 "name" : " gcode-interpreter" ,
3- "version" : " 1.1.1 " ,
3+ "version" : " 1.2.0 " ,
44 "description" : " G-code Interpreter" ,
55 "author" : " Cheton Wu <cheton@gmail.com>" ,
6- "homepage" : " https://github.com/cheton /gcode-interpreter" ,
6+ "homepage" : " https://github.com/cncjs /gcode-interpreter" ,
77 "license" : " MIT" ,
88 "repository" : {
99 "type" : " git" ,
10- "url" : " git@github.com:cheton /gcode-interpreter.git"
10+ "url" : " git@github.com:cncjs /gcode-interpreter.git"
1111 },
1212 "engines" : {
13- "node" : " >=0.10.x "
13+ "node" : " >=4 "
1414 },
1515 "keywords" : [
1616 " cnc" ,
2626 },
2727 "main" : " lib/index.js" ,
2828 "dependencies" : {
29- "gcode-parser" : " ^1.1 .0"
29+ "gcode-parser" : " ^1.2 .0"
3030 },
3131 "devDependencies" : {
3232 "babel-core" : " ^6.21.0" ,
3535 "chai" : " ^3.5.0" ,
3636 "coveralls" : " ^2.11.15" ,
3737 "gulp" : " ^3.9.1" ,
38- "gulp-babel" : " ^6.1.2 " ,
38+ "gulp-babel" : " ^7.0.0 " ,
3939 "gulp-istanbul" : " ^1.1.1" ,
40- "gulp-mocha" : " ^3.0 .1" ,
40+ "gulp-mocha" : " ^4.3 .1" ,
4141 "mocha" : " ^3.2.0"
4242 }
4343}
You can’t perform that action at this time.
0 commit comments