-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
90 lines (90 loc) · 2.28 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"author": {
"name": "Matt Godbolt",
"email": "[email protected]",
"url": "https://xania.org"
},
"name": "jsbeeb",
"description": "Emulate a BBC Micro",
"repository": "[email protected]:mattgodbolt/jsbeeb.git",
"version": "0.0.7",
"engines": {
"node": "20"
},
"type": "module",
"main": "./app/app.js",
"dependencies": {
"@popperjs/core": "^2.11.8",
"argparse": "^2.0.1",
"bootstrap": "^5.3.3",
"bootswatch": "^5.3.3",
"jquery": "^3.7.1",
"underscore": "^1.13.7"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"mini-css-extract-plugin": "^2.9.2",
"npm-run-all": "^4.1.5",
"pixelmatch": "^6.0.0",
"prettier": "^3.3.3",
"sharp": "^0.33.5",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"vitest": "^2.1.5",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"license": "GPL-3.0-or-later",
"build": {
"appId": "org.godbolt.bbc",
"directories": {
"output": "out/dist"
},
"linux": {
"target": "AppImage",
"category": "Game"
},
"files": [
"!tests"
],
"publish": {
"provider": "github",
"releaseType": "release"
}
},
"scripts": {
"start": "webpack serve",
"build": "webpack --node-env production",
"prepare": "husky install",
"ci-checks": "eslint .",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"format": "prettier --write .",
"test-long:cpu": "node tests/test-suite.js",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test": "npm-run-all test:*",
"test-long": "npm-run-all test-long:*",
"benchmark": "node app-bench.js"
},
"lint-staged": {
"*.js": [
"vitest related --run --no-file-parallelism",
"eslint --cache --fix",
"prettier --write"
],
"*.{css,md,html}": "prettier --write"
}
}