-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 980 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
43
44
{
"name": "MessageMap",
"productName": "MessageMap",
"description": "An app to explore your iMessages!",
"version": "1.0.0",
"author": "Max Greenwald <maxgreenwald@icloud>",
"copyright": "© 2017 Max Greenwald",
"homepage": "http://maxgreenwald.me",
"license": "MIT",
"main": "app/app.js",
"build": {
"appId": "com.maxgreenwald.messagemap",
"mac": {
"target": [
"zip"
]
},
"files": [
"app/**/*",
"node_modules/**/*",
"package.json",
"ContactExport"
],
"extraResources": [
"ContactExport"
]
},
"scripts": {
"postinstall": "install-app-deps",
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "build"
},
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0",
"sqlite3": "^3.1.8"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"electron": "^1.4.10",
"electron-builder": "^10.8.1"
}
}