-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.67 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "datachief",
"repository": {
"type": "git",
"url": "https://github.com/iivanic/datachief.git"
},
"bugs": {
"url": "https://github.com/iivanic/datachief/issues"
},
"version": "1.0.0",
"description": "Data collection and eForms solution",
"main": "src/main.js",
"scripts": {
"start": "electron src/main.js",
"test": "electron src/main.js --runalltests",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"author": {
"name": "Igor Ivanic",
"email": "igor_ivanic@hotmail.com"
},
"license": "GPL-3.0",
"dependencies": {
"electron-window-state": "^4.1.1",
"imap": "0.8.x",
"mermaid": "*",
"jquery-validation": "1.x.x",
"jquery": "3.*"
},
"devDependencies": {
"electron": "7.1.2",
"electron-builder": "^22.2.0"
},
"build": {
"appId": "data.chief",
"mac": {
"category": "datachief.app.category.type"
},
"directories": {
"buildResources": "icons"
},
"nsis": {
"language": "1033",
"installerLanguages": [
"en_US"
]
},
"linux": {
"target": [
"deb"
],
"icon": "icons/",
"category": "Office",
"synopsis": "Data collection and eForms solution.",
"description": "Flexible Data Collection eForms Solution with focus on usability and simplicity that actually works in the real world."
},
"files": [
"icons/*",
"node_modules/**/*",
"src/**/*",
"package.json",
"jsconfig.json",
"README.md",
"dc_workflow.png",
"LICENSE",
"Case study Barrique Works LLC.md"
]
}
}