-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(ts): update to latest ts release
Issue microsoft/TypeScript#31676 got fixed and released in ts 3.5.3.
- Loading branch information
Showing
18 changed files
with
210 additions
and
230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,43 @@ | ||
{ | ||
"name": "@stryker-mutator/api", | ||
"version": "2.0.0", | ||
"description": "The api for the extendable JavaScript mutation testing framework Stryker", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/stryker-mutator/stryker" | ||
}, | ||
"keywords": [ | ||
"mutation testing", | ||
"mutation", | ||
"testing", | ||
"test", | ||
"js", | ||
"stryker" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"contributors": [ | ||
"nicojs <jansennico@gmail.com>", | ||
"Alex van Assem <avassem@gmail.com>", | ||
"Jeremy Nagel <jeremy.nagel@learnosity.com>", | ||
"Philipp Weissenbacher <philipp.weissenbacher@gmail.com>", | ||
"Simon de Lang <simondelang@gmail.com>" | ||
], | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/stryker-mutator/stryker/issues" | ||
}, | ||
"homepage": "https://github.com/stryker-mutator/stryker/tree/master/packages/api#readme", | ||
"engines": { | ||
"node": ">=8" | ||
}, | ||
"dependencies": { | ||
"mutation-testing-report-schema": "^1.0.0", | ||
"tslib": "~1.10.0" | ||
}, | ||
"devDependencies": { | ||
"surrial": "~1.0.0", | ||
"typed-inject": "~2.0.0" | ||
} | ||
"name": "@stryker-mutator/api", | ||
"version": "2.0.0", | ||
"description": "The api for the extendable JavaScript mutation testing framework Stryker", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/stryker-mutator/stryker" | ||
}, | ||
"keywords": [ | ||
"mutation testing", | ||
"mutation", | ||
"testing", | ||
"test", | ||
"js", | ||
"stryker" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"contributors": [ | ||
"nicojs <jansennico@gmail.com>", | ||
"Alex van Assem <avassem@gmail.com>", | ||
"Jeremy Nagel <jeremy.nagel@learnosity.com>", | ||
"Philipp Weissenbacher <philipp.weissenbacher@gmail.com>", | ||
"Simon de Lang <simondelang@gmail.com>" | ||
], | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/stryker-mutator/stryker/issues" | ||
}, | ||
"homepage": "https://github.com/stryker-mutator/stryker/tree/master/packages/api#readme", | ||
"engines": { | ||
"node": ">=8" | ||
}, | ||
"dependencies": { | ||
"mutation-testing-report-schema": "^1.0.0", | ||
"tslib": "~1.10.0" | ||
}, | ||
"devDependencies": { | ||
"surrial": "~1.0.0", | ||
"typed-inject": "~2.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,48 @@ | ||
{ | ||
"name": "@stryker-mutator/javascript-mutator", | ||
"version": "2.0.0", | ||
"description": "A plugin for javascript projects using Stryker", | ||
"main": "src/index.js", | ||
"scripts": { | ||
"start": "tsc -w", | ||
"clean": "rimraf \"+(test|src)/**/*+(.d.ts|.js|.map)\" reports", | ||
"test": "nyc --exclude-after-remap=false --check-coverage --reporter=html --report-dir=reports/coverage --lines 85 --functions 90 --branches 60 npm run mocha", | ||
"mocha": "mocha \"test/helpers/**/*.js\" \"test/unit/**/*.js\" \"test/integration/**/*.js\"" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/stryker-mutator/stryker" | ||
}, | ||
"engines": { | ||
"node": ">=8" | ||
}, | ||
"keywords": [ | ||
"stryker", | ||
"javascript", | ||
"@stryker-mutator/mutator-plugin" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/stryker-mutator/stryker/issues" | ||
}, | ||
"author": "Simon de Lang <simondelang@gmail.com>", | ||
"contributors": [ | ||
"Nico Jansen <jansennico@gmail.com>", | ||
"Niek te Grootenhuis <ntegro@hotmail.com>", | ||
"Thomas Peters <thomaspeters4@outlook.com>", | ||
"Sander Koenders <sanderkoenders@gmail.com>" | ||
], | ||
"homepage": "https://github.com/stryker-mutator/stryker/tree/master/packages/javascript-mutator#readme", | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"@babel/generator": "~7.4.0", | ||
"@babel/parser": "~7.4.0", | ||
"@babel/traverse": "~7.4.0", | ||
"@stryker-mutator/api": "^2.0.0", | ||
"lodash": "~4.17.4", | ||
"tslib": "~1.10.0" | ||
}, | ||
"peerDependencies": { | ||
"@stryker-mutator/core": "^2.0.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/types": "~7.4.0", | ||
"@stryker-mutator/mutator-specification": "^2.0.0", | ||
"@stryker-mutator/test-helpers": "^2.0.0", | ||
"@types/babel__generator": "^7.0.0", | ||
"@types/babel__traverse": "^7.0.0" | ||
} | ||
"name": "@stryker-mutator/javascript-mutator", | ||
"version": "2.0.0", | ||
"description": "A plugin for javascript projects using Stryker", | ||
"main": "src/index.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/stryker-mutator/stryker" | ||
}, | ||
"engines": { | ||
"node": ">=8" | ||
}, | ||
"keywords": [ | ||
"stryker", | ||
"javascript", | ||
"@stryker-mutator/mutator-plugin" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/stryker-mutator/stryker/issues" | ||
}, | ||
"author": "Simon de Lang <simondelang@gmail.com>", | ||
"contributors": [ | ||
"Nico Jansen <jansennico@gmail.com>", | ||
"Niek te Grootenhuis <ntegro@hotmail.com>", | ||
"Thomas Peters <thomaspeters4@outlook.com>", | ||
"Sander Koenders <sanderkoenders@gmail.com>" | ||
], | ||
"homepage": "https://github.com/stryker-mutator/stryker/tree/master/packages/javascript-mutator#readme", | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"@babel/generator": "~7.4.0", | ||
"@babel/parser": "~7.4.0", | ||
"@babel/traverse": "~7.4.0", | ||
"lodash": "~4.17.4", | ||
"tslib": "~1.10.0" | ||
}, | ||
"peerDependencies": { | ||
"@stryker-mutator/core": "^2.0.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/types": "~7.4.0", | ||
"@types/babel__generator": "^7.0.0", | ||
"@types/babel__traverse": "^7.0.0" | ||
} | ||
} |
Oops, something went wrong.