-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 755 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 755 Bytes
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
{
"name": "poker-hand-comparator",
"version": "1.0.0",
"description": "tools to compare poker hands",
"main": "src/PokerHand.js",
"scripts": {
"test": "mocha",
"test-watch": "mocha --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/syldouss/poker-hands-comparator.git"
},
"keywords": [
"poker",
"hands",
"cards"
],
"author": "sdousset",
"license": "ISC",
"bugs": {
"url": "https://github.com/syldouss/poker-hands-comparator/issues"
},
"homepage": "https://github.com/syldouss/poker-hands-comparator/test/how-to-run-tests.md",
"type": "module",
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.31.0",
"mocha": "^10.2.0",
"prettier": "2.8.1"
}
}