-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
62 lines (62 loc) · 1.74 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
59
60
61
62
{
"name": "@geckos.io/phaser-on-nodejs",
"version": "1.2.9",
"description": "Allows you to run Phaser 3 games (including Phaser's physics engines) on Node.js.",
"main": "lib/index.js",
"scripts": {
"start": "npm run dev",
"build": "npm run tsc:build",
"dev": "npm-run-all --parallel tsc:watch dev:nodemon",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"tsc:build": "tsc",
"tsc:watch": "tsc --watch",
"dev:nodemon": "nodemon --watch dev --watch lib --watch src dev/dev.js",
"format": "prettier --check src/** dev/** test/**",
"format:write": "prettier --write src/** dev/** test/**",
"prepublishOnly": "npm run build"
},
"author": "Yannick Deubel (https://github.com/yandeu)",
"license": "MIT",
"keywords": [
"phaser",
"node",
"nodejs",
"multiplayer",
"game",
"physics",
"arcade",
"matter"
],
"dependencies": {
"canvas": "^2.10.2",
"jsdom": "^20.0.3",
"phaser3spectorjs": "npm:[email protected]"
},
"devDependencies": {
"@types/jsdom": "^20.0.1",
"@types/node": "^16.4.0",
"@yandeu/prettier-config": "^0.0.3",
"axios": "^0.24.0",
"jest": "^27.0.1",
"node-fetch2": "npm:node-fetch@^2.6.6",
"node-fetch3": "npm:node-fetch@^3.1.0",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"phaser": "^3.60.0",
"typescript": "^4.3.5"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geckosio/phaser-on-nodejs.git"
},
"bugs": {
"url": "https://github.com/geckosio/phaser-on-nodejs/issues"
},
"homepage": "https://github.com/geckosio/phaser-on-nodejs#readme",
"funding": {
"url": "https://github.com/sponsors/yandeu"
}
}