GildedRose-Refactoring-Kata/js-mocha/package.json
Gabriel Birke 765ff04d62 Update dependencies for JavaScript
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
2021-05-14 11:22:05 +02:00

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"
}
}