-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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
{
"name": "pokerstatistics",
"description": "Poker statics calculator",
"version": "1.0.0",
"author": "Jani Sillanpää",
"license": "MIT",
"os": [
"win32"
],
"keywords": [
"PokerStars",
"statistics",
"history"
],
"engines": {
"node": ">=16.17.0"
},
"module": "commonjs",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"test": "jest",
"test:coverage": "jest --coverage",
"build": "node build.mjs",
"debug:build": "rm -rf node_modules package-lock.json && npm i && npm run build && npm start"
},
"dependencies": {
"dotenv": "^16.3.1",
"get-user-locale": "^2.3.1"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.0",
"execa": "^8.0.1",
"jest": "^29.7.0",
"ncp": "^2.0.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}