-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
78 lines (78 loc) · 2.29 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@blackjacktrainer/blackjack-simulator",
"version": "0.34.0",
"description": "Core game logic for a Blackjack basic strategy and card counting trainer",
"main": "dist/main.js",
"bin": {
"blackjack-simulator": "bin/cli.js"
},
"scripts": {
"browser": "webpack serve --open",
"start": "webpack --watch",
"test": "mocha --require @babel/register --require ts-node/register --require tsconfig-paths/register ./test/src/**/*.ts",
"test:types": "tsc --noEmit --project .",
"lint": "eslint --fix ./src ./test",
"build": "webpack",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mhluska/blackjack-simulator.git"
},
"keywords": [
"blackjack",
"basic",
"strategy",
"trainer"
],
"author": "BlackjackTrainer <contact@mail.blackjacktrainer.app>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mhluska/blackjack-simulator/issues"
},
"homepage": "https://blackjacktrainer.app",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/register": "^7.10.5",
"@types/chai": "^4.2.19",
"@types/mocha": "^8.2.2",
"@types/rosie": "0.0.40",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.28.0",
"@webpack-cli/serve": "^1.5.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"mocha": "^10.2.0",
"prettier": "2.0.5",
"rosie": "^2.1.0",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"ts-loader": "^9.2.3",
"ts-node": "^10.1.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.7.2",
"webpack-merge": "^4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix"
}
}