-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.35 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
{
"name": "nodeprefmeasure",
"version": "1.0.0",
"description": "Latency Measurements of a simple Node.js project",
"main": "app.js",
"scripts": {
"start": "node app",
"electron": "electron ./electron/app/main --enable-logging",
"openfin": "node_modules/.bin/openfin --launch --config http://localhost:5000/app.json"
},
"author": {
"name": "Ernie Salazar",
"email": "salazare@verizon.net"
},
"jshintConfig": {
"esversion": 6
},
"dependencies": {
"bignumber.js": "^2.4.0",
"express": "^4.14.0",
"present": "^1.0.0",
"ws": "^1.1.1"
},
"devDependencies": {
"electron": "^1.7.1",
"electron-builder": "^8.5.3",
"openfin-cli": "^1.1.5"
},
"electronBuilder": {
"build": {
"productName": "Node Performance Measure",
"appId": "EikosPartners.NodePerformanceMeasure",
"asar": false,
"win": {
"iconUrl": "http://localhost:5000/images/eikos-logo-multi.ico",
"target": "nsis"
},
"nsis": {
"oneClick": false,
"allowElevation": false
},
"linux": {
"target": "AppImage",
"category": "Development"
},
"mac": {
"target": "dmg"
}
},
"directories": {
"output": "electron/output",
"app": "electron/app",
"buildResources": "electron/buildResources"
}
}
}