-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
125 lines (125 loc) · 3.79 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "excel-parser-processor",
"productName": "Excel Parser Processor",
"version": "1.4.1",
"description": "Does the tedious processing over all items of a given excel file by converting the rows to an array and processing them all",
"main": "./dist/index.bundle.js",
"scripts": {
"build-main": "cross-env NODE_ENV=production PROCESS_TYPE=main webpack --config webpack.prod.js",
"build-main-dev": "cross-env NODE_ENV=development PROCESS_TYPE=main webpack --config webpack.dev.js",
"build-renderer": "cross-env NODE_ENV=production PROCESS_TYPE=renderer webpack --config webpack.prod.js",
"build": "npm-run-all build-main build-renderer",
"build-dev": "npm-run-all -p build-main-dev start-renderer-dev",
"generate-icons": "electron-icon-maker --input=./build-assets/icon.png --output=./build/",
"start-renderer-dev": "cross-env NODE_ENV=development PROCESS_TYPE=renderer webpack serve --config webpack.dev.js",
"start": "cross-env NODE_ENV=development electron --inspect ./dist/index.bundle.js",
"test": "jest",
"test-watch": "jest --coverage --watch",
"pack": "electron-builder build --dir",
"dist": "electron-builder build"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testPathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/node_modules/"
]
},
"repository": {
"type": "git",
"url": "https://github.com/btargac/excel-parser-processor.git"
},
"keywords": [
"electron",
"process",
"excel",
"download",
"parse",
"read excel",
"process excel file"
],
"author": {
"name": "Burak Targaç",
"email": "btargac@gmail.com",
"url": "https://www.buraktargac.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/btargac/excel-parser-processor/issues"
},
"homepage": "https://github.com/btargac/excel-parser-processor#readme",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"babel-jest": "^29.6.1",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.38.1",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"electron": "^32.1.2",
"electron-builder": "^25.1.8",
"electron-icon-maker": "^0.0.5",
"html-webpack-exclude-assets-plugin": "^0.0.7",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.1",
"npm-run-all": "^4.1.5",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.25.0",
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-free-solid": "^5.0.13",
"electron-fetch": "^1.9.1",
"is-url": "^1.2.4",
"jquery": "^3.6.4",
"mime-types": "^2.1.35",
"normalize.css": "^8.0.1",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.19.2/xlsx-0.19.2.tgz"
},
"build": {
"appId": "com.Targac.ExcelParserProcessor",
"productName": "Excel Parser Processor",
"copyright": "Copyright © 2018 Burak Targaç",
"compression": "maximum",
"files": [
"!build-assets${/*}",
"!coverage${/*}",
"!src${/*}"
],
"directories": {
"output": "release"
},
"win": {
"target": [
{
"target": "nsis-web",
"arch": [
"x64",
"ia32"
]
}
]
}
},
"publish": {
"provider": "github",
"owner": "Burak Targaç"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/excel-parser-processor"
}
}