-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.42 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.42 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
{
"name": "@trojs/tux",
"description": "Fun and simple 2D game engine for the web.",
"version": "0.1.0",
"author": {
"name": "Pieter Wigboldus",
"url": "https://trojs.org/"
},
"license": "MIT",
"scripts": {
"lint": "eslint src",
"lint:report": "eslint src/*.js -f json -o report.json src",
"lint:fix": "eslint --fix src",
"test": "node --test --experimental-test-coverage --test-reporter=spec --test-reporter=lcov --test-reporter-destination=stdout --test-reporter-destination=./coverage/lcov.info src/**/*.test.js",
"vulnerabilities": "npm audit --production",
"serve": "serve -p 3001 src",
"test:e2e": "playwright test",
"test:e2e-ui": "playwright test --ui --debug"
},
"type": "module",
"main": "src/index.js",
"source": "src/index.js",
"module": "src/index.js",
"devDependencies": {
"@playwright/test": "^1.52.0",
"@trojs/lint": "^0.4.0",
"eslint": "^9.15.0",
"globals": "^17.0.0",
"monocart-reporter": "^2.9.19",
"playwright": "^1.52.0",
"serve": "^14.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/trojs/tux"
},
"engines": {
"node": ">= 24"
},
"keywords": [
"tux",
"game"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/w3nl"
}
}