-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "react-pokerchip",
"version": "1.0.1",
"description": "A dependency-free, stateless React functional component rendering a poker/casino chip",
"main": "lib/PokerChip.js",
"types": "lib/PokerChip.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npx babel src --out-dir lib --copy-files"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yh54321/react-pokerchip.git"
},
"keywords": [
"casino",
"gamble",
"blackjack",
"poker",
"chip",
"react"
],
"author": "yh54321",
"license": "MIT",
"bugs": {
"url": "https://github.com/yh54321/react-pokerchip/issues"
},
"homepage": "https://github.com/yh54321/react-pokerchip#readme",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}