-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.01 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
{
"name": "card-dealer-cli",
"version": "1.0.3",
"description": "CLI utility for interacting with a deck of cards: pick a random card or deal a hand for a card game",
"keywords": [
"cards",
"random",
"shuffle",
"riffle",
"blackjack",
"poker",
"texas hold em",
"euchre",
"pinochle",
"canasta",
"gin"
],
"main": "build/index.js",
"module": "build/index.mjs",
"types": "build/index.d.ts",
"files": [
"build"
],
"bin": {
"card-dealer": "./build/cli.js"
},
"scripts": {
"prepare": "npm run compile",
"card-dealer": "card-dealer",
"clean": "rm -rf build .rollup.cache",
"compile": "rollup -c --bundleConfigAsCjs",
"compile:watch": "rollup -cw --bundleConfigAsCjs",
"start": "./build/cli.js",
"type-check": "tsc --noEmit",
"format": "prettier . --check",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "jest src/",
"test:watch": "jest src/ --watch",
"all-checks": "npm run type-check && npm run lint && npm run format && npm run test"
},
"author": "Pete Droll <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/pdroll/card-dealer-cli"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.57.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"jest": "^29.7.0",
"prettier": "3.2.5",
"rollup": "^4.12.0",
"rollup-plugin-executable": "^1.6.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.0.0",
"lodash": "^4.17.21",
"prompts": "^2.4.2"
},
"engines": {
"node": ">= 18"
}
}