-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.47 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "card-dealer",
"version": "2.0.0",
"description": "Performs dealer functions for a deck of cards",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"build:check": "tsc --noEmit",
"build:clear": "rm -rf dist/*",
"nuke": "rm -rf node_modules/* dist/* coverage/*",
"test": "jest",
"test:coverage": "jest --coverage",
"prepare": "husky install"
},
"repository": "https://github.com/theaccordance/card-dealer.git",
"keywords": [
"playing cards",
"poker",
"card game",
"cards",
"dealer",
"shuffle",
"card deck",
"blackjack",
"typescript",
"class",
"deck",
"uno"
],
"author": "Joe Mainwaring <[email protected]> (http://joemainwaring.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/theaccordance/card-dealer/issues"
},
"homepage": "https://github.com/theaccordance/card-dealer",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^29.5.11",
"babel-jest": "^29.0.3",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"should": "^13.2.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": [
"prettier --write",
"git add"
]
}
}