-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
41 lines (41 loc) · 1.25 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
{
"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"
},
"scripts": {
"build": "webpack --env.production",
"watch": "webpack --watch --env.development",
"test": "jest",
"test:watch": "jest --watch",
"lint": "tslint src/*.ts test/*.ts",
"dev": "webpack-dev-server --env.development",
"production": "webpack-dev-server --env.production"
},
"devDependencies": {
"@types/jest": "23.1.0",
"awesome-typescript-loader": "5.0.0",
"clean-webpack-plugin": "0.1.19",
"copy-webpack-plugin": "^4.5.1",
"git-revision-webpack-plugin": "3.0.1",
"html-webpack-plugin": "3.2.0",
"jest": "23.1.0",
"script-ext-html-webpack-plugin": "2.0.1",
"ts-jest": "22.4.4",
"ts-transformer-unassert": "2.0.1",
"tslint": "5.10.0",
"typescript": "2.9.2",
"webpack": "4.6.0",
"webpack-cli": "2.0.15",
"webpack-dev-server": "3.1.14"
},
"author": "Graeme McCutcheon (http://www.graememcc.co.uk)",
"license": "GPL-3.0",
"readmeFilename": "README.md"
}