-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 920 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "oh-hell-card-game",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "jest",
"format": "prettier --write ./src",
"lint": "eslint ./src",
"ts": "tsc --noEmit"
},
"engines": {
"node": "^18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Krzyku/oh-hell-card-game.git"
},
"author": "Kacper Jasinski",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Krzyku/oh-hell-card-game/issues"
},
"homepage": "https://github.com/Krzyku/oh-hell-card-game#readme",
"devDependencies": {
"@types/jest": "^29.2.6",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"jest": "^29.3.1",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}