-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.19 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.19 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
{
"name": "micropolisJS",
"version": "0.0.1",
"description": "A port of the open-source simulator \"Micropolis\" to Javascript/HTML5",
"repository": {
"type": "git",
"url": "https://github.com/graememcc/micropolisJS.git"
},
"bugs": {
"url": "https://github.com/graememcc/micropolisJS/issues"
},
"type": "module",
"scripts": {
"build": "webpack --mode production",
"watch": "webpack --watch --mode development",
"test": "jest",
"test:watch": "jest --watch",
"lint": "tslint src/*.ts test/*.ts",
"dev": "webpack serve --mode development",
"production": "webpack serve --mode production"
},
"devDependencies": {
"@types/jest": "30.0.0",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "13.0.0",
"git-revision-webpack-plugin": "5.0.0",
"html-webpack-plugin": "5.6.3",
"jest": "30.0.4",
"ts-jest": "29.4.0",
"ts-loader": "9.5.2",
"typescript": "5.8.3",
"webpack": "5.100.1",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.2"
},
"author": "Graeme McCutcheon (http://www.graememcc.co.uk)",
"license": "GPL-3.0",
"readmeFilename": "README.md",
"dependencies": {
"jquery": "3.7.1"
}
}