mancala/package.json

22 lines
565 B
JSON

{
"name": "mancala.js",
"version": "0.0.1",
"description": "Mancala game library",
"main": "index.js",
"scripts": {
"dev": "yarn tsc -w",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@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"
}
}