-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "pokerwars.io-starterbot-javascript",
"version": "1.0.0",
"description": "A starter bot written in javascript for the pokerwars.io platform. To play: pull this code, register on pokerwars.io, get your API token and play!",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pokerwars/pokerwars.io-starterbot-javascript.git"
},
"keywords": [
"artificial-intelligence",
"bot",
"poker",
"gambling",
"games"
],
"author": "pokerwars.io",
"license": "ISC",
"bugs": {
"url": "https://github.com/pokerwars/pokerwars.io-starterbot-javascript/issues"
},
"homepage": "https://github.com/pokerwars/pokerwars.io-starterbot-javascript#readme",
"devDependencies": {
"nodemon": "^2.0.2"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"npm-check-updates": "^4.0.2",
"request": "^2.88.0",
"snyk": "^1.316.1"
},
"snyk": true
}