mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-15 22:41:30 +00:00
41 lines
918 B
JSON
41 lines
918 B
JSON
{
|
|
"name": "gilded-rose-kata",
|
|
"version": "1.0.0",
|
|
"description": "Gilded Rose kata in JavaScript with Jest",
|
|
"scripts": {
|
|
"start": "node ./test/texttest_fixture.js",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage"
|
|
},
|
|
"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-eslint": "^10.1.0",
|
|
"jest": "^24.9.0",
|
|
"standardx": "^5.0.0"
|
|
},
|
|
"standardx": {
|
|
"parser": "babel-eslint",
|
|
"env": [
|
|
"node", "jest"
|
|
],
|
|
"ignore": [
|
|
"node_modules"
|
|
]
|
|
}
|
|
}
|