-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
54 lines (54 loc) · 1.69 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
{
"name": "@excaliburjs/plugin-aseprite",
"version": "0.29.2",
"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",
"start:ci-server": "webpack --config webpack.config.test.js && http-server ./example --port 8080",
"watch": "webpack --progress --watch",
"build": "webpack --mode production",
"test:unit": "karma start",
"test:integration": "npx playwright test",
"test:integration-update": "npx playwright test --update-snapshots",
"test": "npm run test:unit && npm run test:integration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/excaliburjs/excalibur-aseprite.git"
},
"author": "Erik Onarheim",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/excaliburjs/excalibur-aseprite/issues"
},
"homepage": "https://github.com/excaliburjs/excalibur-aseprite#readme",
"devDependencies": {
"@playwright/test": "1.48.2",
"@types/jasmine": "3.10.18",
"@types/node": "^20.12.7",
"@types/pako": "2.0.3",
"@types/webpack-env": "1.18.5",
"excalibur": "~0.29.0",
"excalibur-jasmine": "0.3.4",
"http-server": "14.1.1",
"jasmine": "3.99.0",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-jasmine": "4.0.2",
"karma-webpack": "5.0.1",
"raw-loader": "4.0.2",
"ts-loader": "9.5.1",
"typescript": "4.9.5",
"webpack": "5.96.1",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.15.2"
},
"peerDependencies": {
"excalibur": "~0.29.0"
},
"dependencies": {
"pako": "2.1.0"
}
}