-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.98 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
{
"name": "i13dm",
"productName": "i13DemandManager",
"description": "i13 Demand Manager for Laptops",
"author": {
"name": "TUM, Informatics 13",
"email": "p.nasirifard@tum.de",
"url": "http://i13dr.de/"
},
"repository": {
"type": "git",
"url": "https://github.com/epezhman/demand-manager-app"
},
"license": "MIT",
"scripts": {
"postinstall": "install-app-deps",
"start": "electron ./app --remote-debugging-port=9222",
"dev:win": "set NODE_ENV=development&& npm start",
"dev:linux": "NODE_ENV=development npm start",
"reload": "live-reload app --port 35729"
},
"devDependencies": {
"async": "2.3.0",
"aws-sdk": "2.41.0",
"del": "2.2.2",
"electron-builder": "16.8.3",
"electron-prebuilt": "1.4.13",
"electron-publisher-s3": "16.8.3",
"gulp": "3.9.1",
"gulp-if": "2.0.2",
"gulp-jscs": "4.0.0",
"gulp-jshint": "2.0.4",
"gulp-load-plugins": "1.5.0",
"gulp-print": "2.0.1",
"gulp-sass": "3.1.0",
"gulp-task-listing": "1.0.1",
"gulp-util": "3.0.8",
"jshint": "2.9.4",
"jshint-stylish": "2.2.1",
"live-reload": "1.1.0",
"mkdirp": "0.5.1",
"mv": "2.1.1",
"q": "1.5.0",
"rimraf": "2.6.1",
"yargs": "7.1.0"
},
"build": {
"appId": "de.tum.in.i13.i13dr",
"asarUnpack": [
"assets/power/*"
],
"files": [
"**/*",
"!assets/stylesheets/sass"
],
"win": {
"target": "nsis",
"icon": "app/assets/img/icon.ico",
"publish": {
"provider": "s3",
"bucket": "demand-manager-resources",
"storageClass": "REDUCED_REDUNDANCY",
"acl": "public-read",
"path": "updates/latest/win_${arch}"
}
},
"nsis": {
"deleteAppDataOnUninstall": true,
"menuCategory": true,
"perMachine": false
},
"linux": {
"icon": "app/assets/img/",
"category": "Utility",
"description": "i13 Demand Manager for Laptops",
"target": [
"deb"
]
}
}
}