-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
{
"name": "@vpmedia/phaser",
"version": "1.76.0",
"description": "@vpmedia/phaser is the modern ECMAScript port of the popular Phaser game engine v2.6.2",
"author": "Andras Csizmadia <[email protected]> (www.vpmedia.hu)",
"license": "MIT",
"homepage": "https://github.com/vpmedia/phaser#readme",
"bugs": {
"url": "https://github.com/vpmedia/phaser/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vpmedia/phaser.git"
},
"keywords": [
"phaser",
"game",
"engine",
"webgl",
"canvas"
],
"main": "./src/index.js",
"types": "./types/index.d.ts",
"type": "module",
"dependencies": {
"@vpmedia/simplify": "^1.16.0",
"uuid": "^11.0.5"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"eslint": "^9.19.0",
"eslint-plugin-jsdoc": "^50.6.2",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lefthook": "^1.10.10",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest --passWithNoTests",
"lint": "eslint \"**/*.{js,jsx}\"",
"typecheck": "tsc",
"format": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json,md,css}\"",
"lefthook:install": "lefthook install",
"lefthook:uninstall": "lefthook uninstall"
},
"browserslist": [
"> 0.5%",
"not dead",
"not op_mini all"
]
}