-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "check-sena",
"version": "1.2.2",
"description": "A package that checks the Mega Sena's numbers against yours.",
"main": "checkSena.ts",
"bin": {
"check-sena": "./bin.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Virkkunen/check-sena.git"
},
"keywords": [
"mega sena",
"loteria",
"lottery",
"brazil",
"caixa",
"brasil",
"mega",
"sena"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx ts-node checkSena.ts",
"compile": "tsc checkSena.ts --outFile bin.js"
},
"author": {
"name": "Fred Almeida",
"email": "[email protected]",
"url": "https://vrkknn.net"
},
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Virkkunen/check-sena/issues"
},
"homepage": "https://github.com/Virkkunen/check-sena#readme",
"dependencies": {
"chalk": "^4.1.2",
"puppeteer": "^20.1.2",
"typescript": "^5.0.4",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^20.1.1",
"@types/puppeteer": "^7.0.4",
"@types/yargs": "^17.0.24"
}
}