-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 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
41
42
43
{
"name": "pixi-scenes",
"version": "1.4.0",
"description": "Managing multiple scenes within your pixi application.",
"main": "build/pixi-scenes.min.js",
"module": "build/esm/index.js",
"types": "build/types/index.d.ts",
"scripts": {
"clean": "rimraf build",
"build": "tsc && tsc -m es6 --outDir build/esm && webpack --config ./config/webpack.build.js",
"test": "jest --config ./config/jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/florisdh/pixi-scenes.git"
},
"keywords": [
"pixi",
"pixi.js",
"scenes",
"states",
"typescript",
"html5"
],
"author": "Floris de Haan",
"license": "ISC",
"bugs": {
"url": "https://github.com/florisdh/pixi-scenes/issues"
},
"homepage": "https://github.com/florisdh/pixi-scenes#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.0.18",
"jest": "^24.9.0",
"jest-canvas-mock": "^2.1.1",
"pixi.js": "^5.1.2",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"typescript": "^3.6.2",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7"
}
}