mancala/package.json

27 lines
635 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",
2022-05-02 00:40:38 +03:00
"test": "yarn jest",
2022-05-01 15:23:02 +03:00
"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",
2022-05-02 00:40:38 +03:00
"jest": "^27.5.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
2022-05-01 15:23:02 +03:00
"typescript": "^4.6.3",
2022-05-02 00:40:38 +03:00
"@types/jest": "^27.4.1"
},
"dependencies": {
2022-04-27 21:57:35 +03:00
}
2022-04-27 21:43:54 +03:00
}