-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.26 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
{
"name": "@poker-apprentice/hand-range-notation",
"version": "1.0.0",
"description": "Convert poker hand range notation to and from poker hands",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"repository": "https://github.com/poker-apprentice/hand-range-notation",
"author": "Matt Huggins <[email protected]>",
"license": "MIT",
"private": false,
"keywords": [
"poker",
"poker hand",
"holdem",
"casino",
"parser",
"parse",
"parsing"
],
"files": [
"dist"
],
"scripts": {
"build": "yarn build:types && yarn build:rollup",
"build:types": "tsc --project tsconfig.build.json",
"build:rollup": "cross-env NODE_ENV=production rollup -c",
"clean": "rimraf dist",
"lint": "eslint src",
"lint:fix": "yarn lint src --fix",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"test": "cross-env NODE_ENV=test TZ=UTC jest",
"prepare": "husky install",
"prepublishOnly": "yarn clean && yarn lint && yarn format && yarn test && yarn build"
},
"lint-staged": {
"*.{js,ts}": "yarn lint",
"*.{js,ts,json,md}": "yarn format"
},
"dependencies": {
"@babel/runtime": "^7.22.11",
"@poker-apprentice/types": "^1.3.0",
"@types/lodash": "^4.14.201",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.11",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"babel-plugin-module-resolver": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.8.1",
"husky": "^8.0.0",
"jest": "^29.6.4",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"prettier-2": "npm:prettier@^2",
"rimraf": "^5.0.1",
"rollup": "^3.28.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}