-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 2.04 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
{
"name": "snakeia",
"version": "2.2.0",
"description": "A Snake version with an artificial intelligence. This version has many game modes. You can play against the AI, or let it play alone. A Battle Royale mode is also available, this mode sees between 2 and 100 AI fight! Many settings are available to vary the games. A Levels mode (for the player and the AI) is also available, it's a series of level with a particular goal to achieve (get a minimum score, get a score in time, …). Downloadable levels are available.",
"main": "dist/SnakeIA-node.js",
"scripts": {
"test": "jest",
"build": "webpack --config prod.webpack.config.js",
"build-dev": "webpack --config dev.webpack.config.js",
"watch": "webpack --config dev.webpack.config.js --watch",
"start": "webpack-dev-server --config dev.webpack.config.js --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eliastik/snakeia.git"
},
"author": "Eliastik",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Eliastik/snakeia/issues"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"restoreMocks": true,
"testEnvironment": "jsdom",
"clearMocks": true,
"resetMocks": true,
"moduleDirectories": [
"node_modules",
"src"
]
},
"homepage": "https://github.com/Eliastik/snakeia#readme",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/runtime": "^7.26.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"eslint": "^9.13.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"i18next": "^23.16.4",
"i18next-browser-languagedetector": "^8.0.0",
"jsgametools": "git+https://github.com/Eliastik/JSGameTools.git#cf5bbf3",
"seedrandom": "^3.0.5",
"socket.io-client": "~2.5.0"
}
}