-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.37 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.37 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
{
"name": "bitstream-bluffs",
"version": "1.8.0",
"type": "module",
"description": "2D side-scrolling infinite sledder game",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test:puppeteer": "node ./node_modules/mocha/bin/mocha.js tests/puppeteer-tests.js --timeout 30000",
"test:all": "npm run test && npm run test:puppeteer"
},
"jest": {
"testEnvironment": "jsdom",
"setupFiles": [
"<rootDir>/jest.setup.js"
],
"transform": {},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"testMatch": [
"**/tests/**/*.test.js"
],
"testTimeout": 10000,
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"devDependencies": {
"chai": "^5.2.0",
"express": "^5.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mocha": "^11.5.0",
"netlify-plugin-cache": "^1.0.3",
"phaser": "^3.90.0",
"phaser3spectorjs": "^0.0.8",
"puppeteer": "^24.9.0",
"vite": "^6.3.5"
}
}