initial import

This commit is contained in:
Emily Bache
2019-08-06 09:34:28 +02:00
commit bf6bfd3ddb
12 changed files with 173 additions and 0 deletions

29
javascript/package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "theatrical-players-refactoring-kata",
"jest": {
"verbose": true
},
"version": "1.0.0",
"description": "Example from first chapter of 'Refactoring' by Martin Fowler, 2nd Edition (https://www.thoughtworks.com/books/refactoring2)",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilybache/Theatrical-Players-Refactoring-Kata.git"
},
"keywords": [
"kata",
"refactor"
],
"license": "MIT",
"private": true,
"bugs": {
"url": "https://github.com/emilybache/Theatrical-Players-Refactoring-Kata/issues"
},
"homepage": "https://github.com/emilybache/Theatrical-Players-Refactoring-Kata",
"devDependencies": {
"babel": "^5.8.23",
"jest": "^24.8.0"
}
}