-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 2.16 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "Flexcel",
"version": "3.0.2",
"description": "Flexcel is an app for flowing high school LD and PF Debate rounds.",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "node_modules/.bin/build",
"release": "bash scripts/publish_flexcel.sh"
},
"repository": "https://github.com/saranchockan/Flexcel",
"keywords": [
"Debate",
"Flow",
"LD",
"PF",
"Paperless"
],
"author": "Flexcel",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^2.0.18",
"electron-builder": "^20.38.5",
"electron-toolkit": "^1.0.24"
},
"dependencies": {
"app": "^0.1.0",
"bootstrap": "^4.1.1",
"bower": "^1.8.4",
"browser-window": "^0.4.0",
"docxtemplater": "^3.9.0",
"electron-default-menu": "^1.0.1",
"electron-store": "^2.0.0",
"eslint": "^4.19.1",
"handsontable": "^4.0.0",
"jquery": "^3.3.1",
"mousetrap": "^1.6.2",
"popper.js": "^1.14.4",
"requirejs": "^2.3.5",
"simplebar": "^2.6.1",
"sortablejs": "^1.7.0",
"textract": "^2.4.0",
"vex": "0.0.4",
"vex-dialog": "^1.1.0",
"vex-js": "^3.1.1",
"word-extractor": "^0.1.4"
},
"build": {
"appId": "com.SAC.Flexcel",
"mac": {
"category": "public.app-category.utilities",
"target": [
"pkg",
"dmg",
"zip",
"mas"
],
"entitlements": "build/entitlements.mac.plist",
"type": "distribution",
"icon": "build/apple-touch-icon-128x128.icns"
},
"mas": {
"entitlements": "build/entitlements.mas.plist",
"type": "distribution",
"category": "public.app-category.utilities"
},
"win": {
"target": "NSIS",
"icon": "build/icon.ico"
}
},
"files": [
"main.js",
"node_modules/**/*",
"bootstrap/**/*",
"css/**/*",
"handsontable/**/*",
"img/**/*",
"js/**/*",
"materialize/**/*",
"app/**/*",
"package.json",
"embedded.provisionprofile",
"main-menu.html",
"traditional-flow.html",
"plan-flow.html",
"pf-flow.html",
"policy-flow-dynamic.html",
"jquery/**/*",
"popper/**/*",
"textboxio-client/**/*",
"sortablejs/**/*"
]
}