forked from excaliburjs/excalibur-aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.54 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
{
"name": "@excaliburjs/plugin-aseprite",
"version": "0.28.0",
"description": "Aseprite Resource Plugin for Excalibur",
"main": "./dist/excalibur-aseprite.js",
"typings": "./dist/src/index.d.ts",
"scripts": {
"start": "webpack-dev-server --config webpack.config.test.js --open",
"watch": "webpack --progress --watch",
"build": "webpack --mode production",
"test:unit": "karma start",
"test:integration": "webpack --config webpack.config.test.js && ex-test -d ./example -t ./test/integration/test.js",
"test": "npm run test:unit && npm run test:integration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/excaliburjs/excalibur-aseprite.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/excaliburjs/excalibur-aseprite/issues"
},
"homepage": "https://github.com/excaliburjs/excalibur-aseprite#readme",
"devDependencies": {
"@excaliburjs/testing": "0.25.1",
"@types/jasmine": "3.10.12",
"@types/pako": "2.0.0",
"@types/webpack-env": "1.18.1",
"acorn": "8.10.0",
"excalibur": "~0.28.1",
"excalibur-jasmine": "0.2.0",
"jasmine": "3.99.0",
"karma": "6.4.2",
"karma-chrome-launcher": "3.2.0",
"karma-jasmine": "4.0.2",
"karma-webpack": "5.0.0",
"raw-loader": "4.0.2",
"ts-loader": "9.4.4",
"typescript": "4.9.5",
"webpack": "5.88.2",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.15.1"
},
"peerDependencies": {
"excalibur": "~0.28.1"
},
"dependencies": {
"pako": "2.1.0"
}
}