mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-11 20:02:09 +00:00
Update to Babel 7 to avoid stern warnings during `npm install` Update Mocha to version 8, also to avoid warnings and be compatible with Babel 7
31 lines
752 B
JSON
31 lines
752 B
JSON
{
|
|
"name": "gilded-rose-kata",
|
|
"version": "1.0.0",
|
|
"description": "Gilded Rose kata in Javascript with Mocha",
|
|
"scripts": {
|
|
"test": "mocha --require @babel/register"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/emilybache/GildedRose-Refactoring-Kata.git"
|
|
},
|
|
"keywords": [
|
|
"kata",
|
|
"refactor",
|
|
"gilded-rose"
|
|
],
|
|
"license": "MIT",
|
|
"private": true,
|
|
"bugs": {
|
|
"url": "https://github.com/emilybache/GildedRose-Refactoring-Kata/issues"
|
|
},
|
|
"homepage": "https://github.com/emilybache/GildedRose-Refactoring-Kata",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.14.0",
|
|
"@babel/preset-env": "^7.14.0",
|
|
"@babel/register": "^7.13.0",
|
|
"chai": "^4.2.0",
|
|
"mocha": "^8.4.0"
|
|
}
|
|
}
|