-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.34 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.34 KB
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": "pixi-shim",
"version": "2.6.2",
"description": "pixijs shim for backend use of pixijs",
"main": "index.js",
"scripts": {
"test": "jest --verbose --silent --forceExit",
"patch-pixi-gl": "sed 's/this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL, false);/this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL, 0);/g' node_modules/@pixi/core/lib/core.js -i",
"precommit": "yarn test && yarn prettier . --write"
},
"repository": {
"type": "git",
"url": "https://github.com/Prozi/pixi-shim.git"
},
"keywords": [
"pixijs",
"shim",
"universal",
"nodejs",
"canvas",
"jsdom"
],
"author": "Jacek Pietal (prozi85@gmail.com)",
"license": "MIT",
"dependencies": {
"debug": "^4.3.4",
"jsdom": "24.1.0",
"jsdom-global": "*"
},
"devDependencies": {
"jest": "^29",
"jest-text-reporter": "^1.0.0",
"pixi.js-legacy": "^7",
"prettier": "^3.2.5"
},
"snyk": true,
"jest": {
"bail": false,
"reporters": [
"default",
[
"<rootDir>/node_modules/jest-text-reporter",
{
"outputdir": ".",
"filename": "test-report.txt"
}
]
]
},
"resolutions": {
"@babel/traverse": "^7.23.6",
"minimist": "^1.2.6",
"semver": "^6.3.1",
"tar": "^6.2.1",
"tough-cookie": "^4.1.3",
"word-wrap": "^1.2.5"
}
}