-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 931 Bytes
/
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
{
"name": "blackjack21",
"version": "1.0.7",
"description": "Blackjack on command line",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx babel index.js --out-file bin.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prajwalkulkarni/cli-blackjack.git"
},
"keywords": [
"Blackjack",
"Card",
"game",
"Cards",
"CLI"
],
"author": "Prajwal Kulkarni",
"license": "ISC",
"bugs": {
"url": "https://github.com/prajwalkulkarni/cli-blackjack/issues"
},
"homepage": "https://github.com/prajwalkulkarni/cli-blackjack#readme",
"bin": "./bin.js",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"core-js": "^3.35.0"
}
}