-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.93 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.93 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
81
{
"name": "csvjoiner",
"productName": "CSV Joiner",
"license": "MIT",
"version": "1.0.1",
"description": "A desktop tool for joining CSV files",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null"
},
"repository": "git@github.com:Sensorfactdev/csv-joiner.git",
"author": "Ramon Gebben <ramon@sensorfact.nl>",
"dependencies": {
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"source-map-support": "^0.5.4",
"styled-components": "^3.2.6",
"vue": "^2.5.16"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"@babel/preset-react": "^7.0.0-beta.46",
"babel-loader": "^8.0.0-beta",
"electron": "1.8.8",
"electron-builder": "^20.10.0",
"electron-webpack": "^2.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"webpack": "^4.6.0"
},
"resolutions": {
"webpack-sources": "1.0.1"
},
"electronWebpack": {
"title": true,
"main": {
"sourceDirectory": "src/main"
},
"renderer": {
"sourceDirectory": "src/renderer",
"webpackConfig": "webpack.renderer.additions.js"
}
},
"build": {
"appId": "nl.sensorfact.csv-joiner",
"files": [
"**/*",
"build/icon.*"
],
"mac": {
"category": "public.app-category.developer-tools"
},
"nsis": {
"createDesktopShortcut": "always"
},
"dmg": {
"contents": [
{
"x": 110,
"y": 200
},
{
"x": 440,
"y": 200,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"category": "Development"
}
}
}