-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 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
{
"name": "swappy-importer",
"version": "0.1.6b",
"main": "main.js",
"copyright": "Copyright © 2017 Swappy.com",
"description": "Swappy.com API clients, allows you to import products via CSV",
"productName": "SwappyImporter",
"homepage": "http://www.swappy.com/",
"scripts": {
"start": "electron .",
"dev": "NODE_ENV='development' npm run start",
"pack": "build --dir",
"dist": "build"
},
"author": {
"name": "Hugo Vacher",
"email": "info@swappy.com",
"url": "http://www.swappy.com/"
},
"license": "MIT",
"build": {
"appId": "com.swappy.importer",
"win": {
"iconUrl": "https://s3.amazonaws.com/swappy.docker/ressources/icon.ico"
},
"linux": {
"category": "Office",
"target": [
"deb",
"tar.gz"
],
"synopsis": "Simple tool to upload a CSV of products to Swappy.com"
}
},
"devDependencies": {
"electron-builder": "^10.8.0",
"electron-prebuilt": "^1.4.1"
},
"dependencies": {
"electron-settings": "^2.2.2",
"fast-csv": "^2.3.0",
"jquery": "^3.1.1",
"swappy-client": "^0.1.1",
"vue": "^2.1.4"
}
}