-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 975 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
45
{
"name": "emb-demo-builder",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"test": "node app.js",
"start": "electron main.js",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"author": "Anthony Alteirac",
"license": "ISC",
"devDependencies":{
"electron": "^16.0.5",
"electron-builder": "^22.14.5"
},
"dependencies": {
"archiver": "^5.3.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"g-i-s": "^2.1.6",
"jsxml": "0.0.2",
"node-fetch": "^2.6.1",
"node-jsxml": "^0.9.0",
"request": "^2.88.2",
"xml-writer": "^1.7.0",
"xml2js": "^0.4.23"
},
"build": {
"asar": false,
"appId": "Tableau.Demo.Builder",
"win": {
"icon": "build/ico.png",
"requestedExecutionLevel": "requireAdministrator"
},
"nsis": {
"perMachine": true
},
"mac": {
"category": "demo.builder",
"icon": "build/ico.png"
}
}
}