-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.12 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.12 KB
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
{
"name": "FastFlow",
"productName": "FastFlow",
"companyName": "FastFlow",
"version": "0.9.0",
"description": "Debate application for keeping your files organized",
"main": "main.js",
"appDir": "app",
"scripts": {
"postinstall": "install-app-deps",
"startdev": "ENVIRONMENT=DEV electron ./app",
"start": "electron ./app",
"webpack": "./node_modules/.bin/webpack",
"pack": "npm run webpack && build --dir",
"dist": "npm run webpack && build",
"setup": "./setup.sh",
"watch": "./node_modules/.bin/webpack-dev-server --hot --inline"
},
"build": {
"appId": "fastflowdebate",
"asar": false,
"files": [
"**/*",
"!node_modules/*",
"node_modules/.bin",
"node_modules/electron",
"node_modules/lokijs/src/lokijs.js",
"node_modules/electron-debug/index.js"
],
"mac": {
"category": "public.app-category.productivity"
}
},
"bin": {
"electron": "./node_modules/.bin/electron"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FastFlowDebate/fastflow.git"
},
"author": "Adam Towers <adam.towers@icloud.com> (https://github.com/zarkoix)",
"license": "MIT",
"bugs": {
"url": "https://github.com/FastFlowDebate/FastFlow/issues"
},
"keywords": [
"electron",
"debate"
],
"homepage": "https://github.com/FastFlowDebate/FastFlow#readme",
"devDependencies": {
"chromedriver": "^2.19.0",
"del": "^2.2.0",
"electron": "^1.4.15",
"electron-builder": "^15.2.0",
"electron-packager": "^8.5.0",
"electron-rebuild": "^1.0.0",
"eslint": "^3.14.0",
"fbjs-scripts": "^0.7.1",
"jsdom": "^9.9.1",
"minimist": "^1.2.0",
"node-gyp": "^3.2.1",
"style-loader": "^0.13.1",
"css-loader": "^0.27.1",
"file-loader": "^0.10.1",
"imports-loader": "^0.7.0",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1",
"webpack-target-electron-renderer": "^0.4.0",
"webpack-uglify-js-plugin": "^1.1.9"
},
"dependencies": {
"electron-debug": "^1.1.0"
},
"devEngines": {
"node": "4.x || 5.x",
"npm": "2.x || 3.x"
}
}