mancala/package.json

22 lines
565 B
JSON
Raw Normal View History

2022-04-27 21:43:54 +03:00
{
"name": "mancala.js",
"version": "0.0.1",
2022-04-27 21:57:35 +03:00
"description": "Mancala game library",
2022-04-27 21:43:54 +03:00
"main": "index.js",
"scripts": {
2022-05-01 15:23:02 +03:00
"dev": "yarn tsc -w",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
2022-04-27 21:43:54 +03:00
},
"author": "",
2022-04-27 21:57:35 +03:00
"license": "ISC",
"devDependencies": {
2022-05-01 15:23:02 +03:00
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"typescript": "^4.6.3",
"prettier": "^2.6.2"
2022-04-27 21:57:35 +03:00
}
2022-04-27 21:43:54 +03:00
}