-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.04 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
{
"name": "metal-snake-web",
"version": "1.0.0",
"description": "A retro-styled snake game with a Heavy Metal theme built for the web",
"type": "module",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage --coverageReporters=html,text,lcov",
"serve": "http-server -p 8000"
},
"dependencies": {
"@sentry/browser": "^7.109.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jest-localstorage-mock": "^2.4.26"
},
"repository": {
"type": "git",
"url": "https://github.com/shikyo13/metal-snake-web.git"
},
"keywords": [
"snake",
"game",
"canvas",
"html5",
"javascript",
"es6"
],
"author": "",
"license": "MIT"
}