forked from stryker-mutator/stryker-js
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(multi-package): Migrate to multi-package repo (stryker-mutator#257)
* refactor(stryker): Add stryker package * refactor(stryker-api): Add stryker-api package * Refactor estree types. Instead of extending every type and adding a `nodeID` property, create a new type `type IdentifiedNode = Node & Identified`. * refactor(travis): Add travis config to lerna root * docs(readme): Add root project readme
- Loading branch information
Showing
200 changed files
with
2,564 additions
and
502 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,15 +1 @@ | ||
node_modules | ||
/coverage | ||
/testResources/module/coverage | ||
.tscache | ||
.stryker-tmp | ||
reports | ||
typings | ||
*.js.map | ||
src/**/*.js | ||
test/**/*.js | ||
src/**/*.d.ts | ||
test/**/*.d.ts | ||
.idea | ||
*.iml | ||
*.tmp.txt |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"lerna": "2.0.0-beta.38", | ||
"packages": [ | ||
"packages/*" | ||
], | ||
"version": "independent" | ||
} |
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,122 +1,12 @@ | ||
{ | ||
"name": "stryker", | ||
"version": "0.5.9", | ||
"description": "The extendable JavaScript mutation testing framework", | ||
"main": "src/Stryker.js", | ||
"typings": "src/Stryker.d.ts", | ||
"scripts": { | ||
"test": "grunt test", | ||
"start": "tsc -w", | ||
"sample": "node src/stryker-cli.js --configFile testResources/sampleProject/stryker.conf.js", | ||
"preversion": "grunt", | ||
"clean": "grunt clean", | ||
"jshint": "grunt jshint", | ||
"tslint": "grunt tslint", | ||
"coverage": "grunt coverage", | ||
"intergration": "grunt intergration", | ||
"build": "grunt build", | ||
"serve": "grunt serve", | ||
"watch-test": "grunt watch-test", | ||
"release": "grunt release" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/stryker-mutator/stryker" | ||
}, | ||
"engines": { | ||
"node": ">=4" | ||
}, | ||
"keywords": [ | ||
"mutation testing", | ||
"mutation", | ||
"testing", | ||
"test", | ||
"js", | ||
"stryker" | ||
], | ||
"author": "Simon de Lang", | ||
"contributors": [ | ||
"Simon de Lang <[email protected]>", | ||
"Nico Jansen <[email protected]>", | ||
"Sander Koenders <[email protected]>", | ||
"global <[email protected]>", | ||
"Philipp Weissenbacher <[email protected]>", | ||
"Jasper Catthoor <[email protected]>", | ||
"Nico Stapelbroek <[email protected]>", | ||
"Alex van Assem <[email protected]>", | ||
"Jelle Peters <[email protected]>", | ||
"Jeremy Nagel <[email protected]>", | ||
"MarktHart <[email protected]>", | ||
"Michael Williamson <[email protected]>", | ||
"Willem Meints <[email protected]>" | ||
], | ||
"license": "Apache-2.0", | ||
"bin": { | ||
"stryker": "./bin/stryker" | ||
}, | ||
"dependencies": { | ||
"chalk": "^1.1.1", | ||
"commander": "^2.9.0", | ||
"es6-promise-pool": "^2.4.4", | ||
"escodegen": "^1.8.0", | ||
"esprima": "^2.7.0", | ||
"glob": "^7.0.3", | ||
"graceful-fs": "^4.1.11", | ||
"istanbul": "^0.4.5", | ||
"lodash": "^4.17.4", | ||
"log4js": "^1.1.0", | ||
"mkdirp": "^0.5.1", | ||
"progress": "^1.1.8", | ||
"serialize-javascript": "^1.3.0", | ||
"tslib": "^1.5.0" | ||
}, | ||
"private": true, | ||
"devDependencies": { | ||
"@types/chai-as-promised": "0.0.29", | ||
"@types/chalk": "^0.4.28", | ||
"@types/escodegen": "0.0.6", | ||
"@types/esprima": "^2.1.31", | ||
"@types/estree": "0.0.32", | ||
"@types/glob": "^5.0.29", | ||
"@types/graceful-fs": "^2.0.29", | ||
"@types/istanbul": "^0.4.29", | ||
"@types/karma": "^0.13.32", | ||
"@types/lodash": "^4.14.34", | ||
"@types/log4js": "0.0.32", | ||
"@types/mkdirp": "^0.3.28", | ||
"@types/mocha": "^2.2.34", | ||
"@types/progress": "^1.1.28", | ||
"@types/sinon": "^1.16.33", | ||
"@types/sinon-as-promised": "^4.0.5", | ||
"@types/sinon-chai": "^2.7.27", | ||
"chai": "^3.4.1", | ||
"chai-as-promised": "^6.0.0", | ||
"grunt": "^1.0.1", | ||
"grunt-bump": "^0.8.0", | ||
"grunt-cli": "^1.2.0", | ||
"grunt-contrib-clean": "^1.0.0", | ||
"grunt-contrib-jshint": "^1.0.0", | ||
"grunt-contrib-watch": "^1.0.0", | ||
"grunt-conventional-changelog": "^6.1.0", | ||
"grunt-mocha-istanbul": "^5.0.1", | ||
"grunt-mocha-test": "^0.13.2", | ||
"grunt-npm": "0.0.2", | ||
"grunt-ts": "^6.0.0-beta.3", | ||
"grunt-tslint": "^4.0.0", | ||
"jasmine-core": "^2.4.1", | ||
"karma": "1.0.0", | ||
"karma-coverage": "^1.0.0", | ||
"karma-jasmine": "^1.0.2", | ||
"karma-phantomjs-launcher": "^1.0.1", | ||
"load-grunt-tasks": "^3.5.0", | ||
"mocha": "^3.2.0", | ||
"sinon": "^1.17.2", | ||
"sinon-as-promised": "^4.0.2", | ||
"sinon-chai": "^2.8.0", | ||
"stryker-api": "^0.5.0-rc0", | ||
"tslint": "^4.4.2", | ||
"typescript": "~2.2.1" | ||
"lerna": "^2.0.0-beta.38", | ||
"typescript": "^2.2.1" | ||
}, | ||
"peerDependencies": { | ||
"stryker-api": "^0.5.0-rc0" | ||
"scripts": { | ||
"postinstall": "lerna bootstrap", | ||
"build": "lerna run build", | ||
"test": "lerna run test" | ||
} | ||
} | ||
} |
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
node_modules | ||
npm-debug.log | ||
coverage | ||
.tscache | ||
typings | ||
*.js.map | ||
src/**/*.js | ||
test/**/*.js | ||
src/**/*.d.ts | ||
test/**/*.d.ts | ||
*.js | ||
*.d.ts | ||
!Gruntfile.js | ||
!testResources |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
*.ts | ||
!*.d.ts | ||
*.js.map | ||
Gruntfile.js | ||
test | ||
tsconfig.json | ||
typings.json | ||
testResources | ||
typings |
Oops, something went wrong.