-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "excalibur-jasmine",
"version": "0.3.8",
"description": "Jasmine matchers for testing excalibur",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/excaliburjs/excalibur-jasmine/"
},
"scripts": {
"build": "webpack --mode none",
"test": "node ./node_modules/karma/bin/karma start",
"test:watch": "node ./node_modules/karma/bin/karma start --single-run=false --browsers=Chrome_with_debug"
},
"keywords": [
"Excalibur",
"Excalibur.js",
"testing",
"jasmine"
],
"author": "Erik Onarheim",
"license": "BSD-2-Clause",
"devDependencies": {
"@types/jasmine": "5.1.5",
"@types/webpack": "5.28.5",
"@types/webpack-env": "1.18.5",
"copy-webpack-plugin": "12.0.2",
"excalibur": "^0.30.0",
"jasmine-core": "5.5.0",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-jasmine": "5.1.0",
"karma-sourcemap-loader": "0.4.0",
"karma-webpack": "5.0.1",
"puppeteer": "23.10.4",
"ts-loader": "9.5.1",
"typescript": "5.7.2",
"wallaby-webpack": "3.9.16",
"webpack": "5.97.1",
"webpack-cli": "5.1.4"
},
"peerDependencies": {
"excalibur": "^0.30.0"
},
"dependencies": {
"pixelmatch": "5.3.0"
}
}