mancala/package.json

28 lines
708 B
JSON
Raw Normal View History

2022-04-27 21:43:54 +03:00
{
"name": "mancala.js",
2022-05-12 23:07:23 +03:00
"version": "0.0.2-beta.1",
2022-04-27 21:57:35 +03:00
"description": "Mancala game library",
2022-05-04 22:46:37 +03:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
2022-04-27 21:43:54 +03:00
"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",
2022-05-04 22:46:37 +03:00
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"build": "tsc",
"prepublish": "tsc"
2022-04-27 21:43:54 +03:00
},
2022-05-04 22:46:37 +03:00
"author": "Halit Aksoy",
"license": "MIT",
2022-04-27 21:57:35 +03:00
"devDependencies": {
2022-05-04 22:46:37 +03:00
"@types/jest": "^27.4.1",
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-04 22:46:37 +03:00
"typescript": "^4.6.3"
2022-04-27 21:57:35 +03:00
}
2022-04-27 21:43:54 +03:00
}