This repository was archived by the owner on May 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.18 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.18 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
{
"name": "fandom-image-transfer",
"version": "0.1.1",
"description": "It's time to ditch RubyWikiDownloader.",
"keywords": [
"wikia",
"fandom",
"proton-native",
"image-transfer"
],
"homepage": "https://github.com/WikiaUsers/fandom-image-transfer",
"bugs": {
"email": "admin@kocka.tech",
"url": "https://github.com/WikiaUsers/fandom-image-transfer/issues"
},
"license": "GPL-3.0-or-later",
"author": {
"name": "KockaAdmiralac",
"url": "https://dev.fandom.com/wiki/User:KockaAdmiralac",
"email": "git@kocka.tech"
},
"contributors": [],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/WikiaUsers/fandom-image-transfer"
},
"scripts": {
"start": "node_modules/.bin/babel-node index.js",
"build": "node_modules/.bin/babel index.js -d bin/",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"publish": "electron-builder -wlp onTagOrDraft"
},
"dependencies": {
"axios": ">=0.19.0",
"axios-cookiejar-support": ">=0.5.0",
"babel-polyfill": ">=6.26.0",
"form-data": ">=2.5.1",
"locale-code": ">=2.0.2",
"proton-native": ">=1.1.11",
"tough-cookie": ">=3.0.1"
},
"devDependencies": {
"babel-cli": ">=6.26.0",
"babel-preset-env": ">=1.7.0",
"babel-preset-react": ">=6.24.1",
"babel-preset-stage-0": ">=6.24.1",
"electron-builder": ">=21.2.0",
"eslint": ">=6.4.0",
"eslint-plugin-jsdoc": ">=15.9.2",
"eslint-plugin-node": ">=10.0.0",
"eslint-plugin-promise": ">=4.2.1"
},
"build": {
"appId": "com.fandom.dev.image-transfer",
"productName": "Fandom Image Transfer",
"framework": "proton-native",
"nodeVersion": "10.16.3",
"mac": {
"identity": null
},
"linux": {
"target": "tar.gz",
"synopsis": "Transfers images from one Fandom wiki to another.",
"category": "Network"
},
"publish": {
"provider": "github"
}
}
}