-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 742 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 742 Bytes
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
{
"name": "marklinsim",
"version": "0.1.0",
"description": "Märklin train set simulation",
"main": "./dist/main.js",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile-main": "tsc",
"copy-resources": "copyfiles --up 1 src/**/*.html dist/"
},
"author": "Martin Chloride",
"license": "MIT",
"devDependencies": {
"@types/bezier-js": "^0.0.7",
"@types/node": "^9.4.6",
"@types/pixi.js": "^4.7.1",
"copyfiles": "^1.2.0",
"electron": "~34.1.0",
"tslint": "^5.9.1",
"typescript": "^3.5.1"
},
"dependencies": {
"bezier-js": "^2.2.5",
"pixi.js": "^4.7.0"
}
}