forked from mattgodbolt/jsbeeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.32 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
{
"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": "18"
},
"type": "module",
"main": "./app/app.js",
"dependencies": {
"@popperjs/core": "^2.11.5",
"argparse": "^2.0.1",
"bootstrap": "^5.1.3",
"bootswatch": "^5.1.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"eslist": "^1.0.0-beta.1",
"jquery": "^3.6.0",
"underscore": "^1.13.2"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"html-loader": "^4.1.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "^2.6.0",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.8.1"
},
"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": "mocha tests/unit",
"test:integration": "mocha tests/integration",
"test:dormann": "node tests/test-dormann.js",
"test": "npm-run-all -p test:*",
"test-long": "npm-run-all -p test-long:*"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{css,md}": "prettier --write"
}
}