-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 871 Bytes
/
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
{
"name": "Cells",
"version": "1.0.0",
"description": "Conway's Game of Life implementation",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "build --dir",
"dist": "build"
},
"build": {
"appId": "de.florianfe.gameoflife",
"mac": {
"category": "public.app-category.games",
"icon": "icon@2x"
},
"win": {
"icon": "build/icon"
}
},
"repository": "https://github.com/FlorianFe/",
"keywords": [
"translation",
"polymer",
"electron"
],
"author": "Florian Fechner",
"license": "MIT",
"devDependencies": {
"electron": "^9.1.2",
"electron-builder": "^20.8.1"
},
"dependencies": {
"electron-localshortcut": "^3.1.0",
"ipc": "0.0.1",
"ndarray": "^1.0.18",
"npm": "^6.1.0",
"path": "^0.12.7",
"roughjs": "^2.1.3",
"zeros": "^1.0.0"
}
}